12 lines
164 B
Plaintext
12 lines
164 B
Plaintext
// #failed: resolve
|
|
main :: proc(): int {
|
|
|
|
// #error: there are 2 decls with the same name 'a'
|
|
// #error: a
|
|
a: int;
|
|
{
|
|
a: int;
|
|
}
|
|
|
|
return 1;
|
|
} |