mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
update test
This commit is contained in:
parent
c6e7d56fb6
commit
576558b9d0
1 changed files with 5 additions and 5 deletions
|
@ -23,10 +23,10 @@ procedure Dep.0 ():
|
||||||
ret Dep.1;
|
ret Dep.1;
|
||||||
|
|
||||||
procedure Test.0 ():
|
procedure Test.0 ():
|
||||||
let Test.3 : Str = "http://www.example.com";
|
let Test.5 : {Str, Str} = CallByName Dep.0;
|
||||||
let Test.4 : {Str, Str} = CallByName Dep.0;
|
let Test.2 : Str = StructAtIndex 0 Test.5;
|
||||||
let Test.2 : Str = StructAtIndex 0 Test.4;
|
let #Derived_gen.0 : Str = StructAtIndex 1 Test.5;
|
||||||
let #Derived_gen.0 : Str = StructAtIndex 1 Test.4;
|
|
||||||
dec #Derived_gen.0;
|
dec #Derived_gen.0;
|
||||||
let Test.1 : {Str, Str} = Struct {Test.2, Test.3};
|
let Test.4 : Str = "http://www.example.com";
|
||||||
|
let Test.1 : {Str, Str} = Struct {Test.2, Test.4};
|
||||||
ret Test.1;
|
ret Test.1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue