Files
c3c/test/test_suite/expression_block/expression_block_break.c3
2025-02-18 12:50:34 +01:00

12 lines
242 B
Plaintext

// #deprecation: no
module fe;
import std::io;
extern fn int printf(char *str, ...);
fn int main()
{
while(true)
{
return {| break; return 0; |}; // #error: There is no valid target for 'break', did you make a mistake
}
}