Remove MacOS Github runner
Some checks failed
/ run-and-compile-ubuntu (push) Has been cancelled
/ run-and-compile-windows (push) Has been cancelled

This commit is contained in:
Krzosa Karol
2024-06-14 11:33:46 +02:00
parent 827e838550
commit ced67bbb96
4 changed files with 27 additions and 28 deletions

11
tests/defer_todo.txt Normal file
View File

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