umka-lang icon indicating copy to clipboard operation
umka-lang copied to clipboard

Nested expression lists are not allowed

Open vtereshkov opened this issue 2 years ago • 0 comments

fn foo(): (int, bool) {
        return 42, true
}

fn main() {
        a, b, c := foo(), 7 // Error: Nested expression lists are not allowed
}

Related: #300

vtereshkov avatar Aug 16 '23 00:08 vtereshkov