comment out type aliases for the unique version

This commit is contained in:
Folkert 2020-10-18 23:53:43 +02:00
parent 894f7de009
commit 847a1be65e
2 changed files with 3 additions and 4 deletions

View File

@ -1011,15 +1011,14 @@ mod gen_primitives {
r#"
app Test provides [ main ] imports []
succeed : a -> ({} -> a)
# succeed : a -> ({} -> a)
succeed = \x -> \{} -> x
foo : {} -> Float
foo =
succeed 3.14
runEffect : ({} -> a) -> a
# runEffect : ({} -> a) -> a
runEffect = \thunk -> thunk {}
main : Float

View File

@ -348,7 +348,7 @@ macro_rules! assert_evals_to {
assert_llvm_evals_to!($src, $expected, $ty, $transform, $leak);
}
{
// assert_opt_evals_to!($src, $expected, $ty, $transform, $leak);
assert_opt_evals_to!($src, $expected, $ty, $transform, $leak);
}
};
}