14 lines
241 B
Plaintext
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;
|
|
} |