oden/fine/tests/expression/lists.fine

11 lines
No EOL
133 B
Text

fun sum(x: list<f64>) -> f64 {
75 // lol
}
fun test() {
let val = [1, 2, 3];
sum(val);
}
// @no-errors
// @type: 88 list<f64>