Files
lib_compiler/tests/defer_todo.txt
Krzosa Karol ced67bbb96
Some checks failed
/ run-and-compile-ubuntu (push) Has been cancelled
/ run-and-compile-windows (push) Has been cancelled
Remove MacOS Github runner
2024-06-14 11:33:46 +02:00

11 lines
168 B
Plaintext

a: char;
main :: proc(): int {
/*for i := 0; i < 4; i += 1 {
if i == 2 { break; }
string := &a;
defer *string = 1;
}*/
return 0;
}