q/tests/errors/UnknownIdentifier3.q
2025-02-17 14:31:47 +01:00

7 lines
No EOL
56 B
Text

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