Files
ispc/tests_errors/goto-5.ispc
Nipunn Koorapati 040421942f Goto statements with a bad label produces error message.
Now it also produces a short list of suggestions based on string distance.
2012-04-20 14:42:14 -04:00

7 lines
65 B
Plaintext

void func(int x) {
completelydifferentlabel:
goto label;
}