Files
gp4/TestData/Sources/action-parameters-wrong-order.p4
2026-05-22 02:38:47 -04:00

14 lines
237 B
Plaintext

control simple(int x, int y) {
action a(inout bool aa, int ax, inout bool ay) {
aa = false;
}
table t {
key = {
x: exact;
y: exact;
}
}
apply {
}
};