mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 09:20:12 +01:00
27 lines
440 B
Plaintext
27 lines
440 B
Plaintext
********** source program **********
|
|
fn f Int: x -> Int {
|
|
return 0;
|
|
|
|
}
|
|
fn main () -> Int {
|
|
var Int: a = 0;
|
|
var Int: b = 1;
|
|
f(0 = a);
|
|
b = a;
|
|
return b;
|
|
|
|
}
|
|
********** type checking **********
|
|
--- step exp Int --->
|
|
--- step exp Int --->
|
|
--- step exp Int --->
|
|
--- step exp Int --->
|
|
--- step exp Int --->
|
|
--- step exp Int --->
|
|
--- step exp Int --->
|
|
--- step exp Int --->
|
|
15: type error in call
|
|
expected: Int
|
|
actual: Tuple(0 = Int)
|
|
EXIT CODE: 255
|