Fix test.

This commit is contained in:
Stephen Chung 2023-04-10 13:17:48 +08:00
parent 465fdeec21
commit b5c81c9baa

View File

@ -172,7 +172,7 @@ fn test_optimizer_reoptimize() -> Result<(), Box<EvalAltResult>> {
const FOO = 42; const FOO = 42;
fn foo() { fn foo() {
let f = || FOO * 2; let f = || FOO * 2;
f.call() call(f)
} }
foo() foo()
"; ";