mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
Don't mark accessors as thunks
This commit is contained in:
parent
6b491c617e
commit
f0ab9f77ca
3 changed files with 13 additions and 18 deletions
|
@ -1,12 +1,8 @@
|
|||
procedure Test.1 ():
|
||||
let Test.6 : {} = Struct {};
|
||||
ret Test.6;
|
||||
|
||||
procedure Test.2 (Test.7):
|
||||
ret Test.7;
|
||||
let Test.4 : {} = Struct {};
|
||||
ret Test.4;
|
||||
|
||||
procedure Test.0 ():
|
||||
let Test.9 : U8 = 15i64;
|
||||
let Test.4 : {} = CallByName Test.1;
|
||||
let Test.3 : U8 = CallByName Test.2 Test.9;
|
||||
ret Test.3;
|
||||
let Test.6 : U8 = 15i64;
|
||||
let Test.2 : U8 = CallByName Test.1 Test.6;
|
||||
ret Test.2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue