Files
carbon-lang/executable_semantics/testdata/global_variable3.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

15 lines
277 B
Plaintext

********** source program **********
var Int : flag = true
fn main () -> Int {
return 0;
}
********** type checking **********
--- step exp Int --->
--- step exp Int --->
--- step exp Int --->
7: type error in initializer of variable
expected: Int
actual: Bool
EXIT CODE: 255