mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
16 lines
735 B
Text
16 lines
735 B
Text
procedure Test.1 (Test.5):
|
|
let Test.2 : Builtin(Int(I64)) = 42i64;
|
|
let Test.3 : LambdaSet(LambdaSet { set: [( Test.3, [Builtin(Int(I64))])], representation: Struct([Builtin(Int(I64))]) }) = Struct {Test.2};
|
|
ret Test.3;
|
|
|
|
procedure Test.3 (Test.9, #Attr.12):
|
|
let Test.2 : Builtin(Int(I64)) = StructAtIndex 0 #Attr.12;
|
|
let Test.2 : Builtin(Int(I64)) = 42i64;
|
|
ret Test.2;
|
|
|
|
procedure Test.0 ():
|
|
let Test.8 : Struct([]) = Struct {};
|
|
let Test.4 : LambdaSet(LambdaSet { set: [( Test.3, [Builtin(Int(I64))])], representation: Struct([Builtin(Int(I64))]) }) = CallByName Test.1 Test.8;
|
|
let Test.7 : Struct([]) = Struct {};
|
|
let Test.6 : Builtin(Int(I64)) = CallByName Test.3 Test.7 Test.4;
|
|
ret Test.6;
|