mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-13 09:49:11 +03:00
comment out type aliases for the unique version
This commit is contained in:
parent
894f7de009
commit
847a1be65e
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user