mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-14 07:29:02 +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#"
|
r#"
|
||||||
app Test provides [ main ] imports []
|
app Test provides [ main ] imports []
|
||||||
|
|
||||||
|
# succeed : a -> ({} -> a)
|
||||||
succeed : a -> ({} -> a)
|
|
||||||
succeed = \x -> \{} -> x
|
succeed = \x -> \{} -> x
|
||||||
|
|
||||||
foo : {} -> Float
|
foo : {} -> Float
|
||||||
foo =
|
foo =
|
||||||
succeed 3.14
|
succeed 3.14
|
||||||
|
|
||||||
runEffect : ({} -> a) -> a
|
# runEffect : ({} -> a) -> a
|
||||||
runEffect = \thunk -> thunk {}
|
runEffect = \thunk -> thunk {}
|
||||||
|
|
||||||
main : Float
|
main : Float
|
||||||
|
@ -348,7 +348,7 @@ macro_rules! assert_evals_to {
|
|||||||
assert_llvm_evals_to!($src, $expected, $ty, $transform, $leak);
|
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