Files
carbon-lang/executable_semantics/testdata/global_variable5.golden
T
Jeremy G. Siek ced98ef021 Global variables (#378)
* global variables

* implemented type checking of global variable, added test case

* added a comment

* improvements based on Dave's suggestions

* improvements based on Jon's suggestions

* added test cases about global variable ordering
2021-03-15 16:06:27 -04:00

23 lines
404 B
Plaintext

********** source program **********
var Int : x = 1
fn identity (0 = Int: x) -> () {
return x;
}
fn main () -> Int {
return identity(0 = 0);
}
********** type checking **********
--- step exp Int --->
--- step exp Int --->
--- step exp () --->
--- step exp Int --->
--- step exp Int --->
--- step exp Int --->
--- step exp () --->
10: type error in return
expected: Tuple()
actual: Int
EXIT CODE: 255