Compare commits

..

No commits in common. "50eb7a9673fd96bf4a8c2c04afc0f76ba0775474" and "5ebede4a21ea3da6eae88814211f1d940f68e828" have entirely different histories.

View file

@ -1,11 +1,5 @@
fun foo(x: f64) {} fun foo(x: f64) {}
let x = foo("hello"); let x = foo("hello");
x; x;
let y = foo();
y;
let a = foo(2, 3);
a;
// @type-error: 41 parameter 0 has an incompatible type: expected f64 but got string // @type-error: 41 parameter 0 has an incompatible type: expected f64 but got string
// @type-error: 59 expected 1 parameters
// @type-error: 81 expected 1 parameters