Files
gp4/TestData/Sources/file-loc-error-parser-state.p4
Will Hawkins bc51b4e280 compiler: Reworked Preprocessor To Support Better Error Messages
Can now support showing the trail of includes in an error
message.

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
2026-05-22 20:41:43 -04:00

10 lines
207 B
Plaintext

state start {
Testing ts;
ts.yesno = true;
ts.count = 5;
transition select (ts.yesno == "testing") {
true: accept;
false: reject;
};
}