re-enable test

This commit is contained in:
Folkert 2021-05-05 15:13:33 +02:00
parent 31647f61f9
commit b76ea0b9d9

View file

@ -3698,7 +3698,6 @@ mod solve_expr {
} }
#[test] #[test]
#[ignore]
fn function_that_captures_nothing_is_not_captured() { fn function_that_captures_nothing_is_not_captured() {
// we should make sure that a function that doesn't capture anything it not itself captured // we should make sure that a function that doesn't capture anything it not itself captured
// such functions will be lifted to the top-level, and are thus globally available! // such functions will be lifted to the top-level, and are thus globally available!
@ -3712,7 +3711,7 @@ mod solve_expr {
g g
"# "#
), ),
"I64", "Num a -> Num a",
); );
} }