Fixed invoking functions within function arguments
Somewhat similar to c9d4b9965c
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
|
||||
|
||||
fn a(x) {
|
||||
assert x == 42;
|
||||
}
|
||||
|
||||
fn b() {
|
||||
return 42;
|
||||
}
|
||||
|
||||
a(b());
|
||||
Reference in New Issue
Block a user