umka-lang
umka-lang copied to clipboard
Nested expression lists are not allowed
fn foo(): (int, bool) {
return 42, true
}
fn main() {
a, b, c := foo(), 7 // Error: Nested expression lists are not allowed
}
Related: #300