q/tests/errors/UnknownIdentifier3.q

7 lines
No EOL
56 B
Text

main() {
x := 1 + f(x)
}
f(x int) -> int {
return x
}