mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
Support specialization of naked tag unions at toplevel
This commit is contained in:
parent
507e1e5add
commit
532b2ff403
4 changed files with 12 additions and 7 deletions
|
@ -0,0 +1,7 @@
|
|||
procedure Test.4 ():
|
||||
let Test.7 : [<rnu><null>, C List *self] = TagId(1) ;
|
||||
ret Test.7;
|
||||
|
||||
procedure Test.0 ():
|
||||
let Test.6 : [<rnu><null>, C List *self] = CallByName Test.4;
|
||||
ret Test.6;
|
|
@ -1720,7 +1720,6 @@ fn call_function_in_empty_list_unbound() {
|
|||
}
|
||||
|
||||
#[mono_test]
|
||||
#[ignore = "TODO"]
|
||||
fn instantiate_annotated_as_recursive_alias_toplevel() {
|
||||
indoc!(
|
||||
r#"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue