mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 12:50:12 +01:00
* 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
15 lines
277 B
Plaintext
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
|