- Assertion improvements - Type check function calls - Functions in the environment - Compile function calls
6 lines
189 B
Text
6 lines
189 B
Text
fun foo(x: f64) {}
|
|
x;
|
|
|
|
// @type-error: 19 cannot find value x here
|
|
// Used to have a bug where statements after a function declaration would
|
|
// bind to the declaration's arguments, whoops.
|