10 lines
198 B
Plaintext
10 lines
198 B
Plaintext
// #failed: resolve
|
|
// #error: non constant global declarations are illegal
|
|
// #error: expected an untyped constant
|
|
|
|
thing :: proc(): int {
|
|
return 0;
|
|
}
|
|
|
|
variable := thing();
|
|
constant :: thing(); |