We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
(ret g)(41)
becomes
ret g(41)
Here's an invalid program that gets transformed into a program that prints 42.
fn f(g: fn(int) -> int) -> int { (ret g)(41) } fn succ(x: int) -> int { x + 1 } fn main() { log_err f(succ); }