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

7 lines
56 B
Plaintext

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