Files
lib_compiler/tests/regression_unidentified_in_function_please_dont_assert.txt
2024-04-13 15:29:53 +02:00

14 lines
241 B
Plaintext

// #failed: resolve
// #error: undeclared identifier 'unidentified'
thing :: proc(): unidentified {
}
// #error: undeclared identifier 'unidentified2'
thing2 :: proc(a: unidentified2) {
}
main :: proc(): int {
thing();
return 0;
}