leo/tests/compiler/definition/out_of_order.leo

15 lines
175 B
Plaintext
Raw Normal View History

2021-05-03 16:47:33 +03:00
/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
2021-05-03 16:47:33 +03:00
*/
2021-01-22 00:50:15 +03:00
@test
function fake_test() {}
function main(y: bool) -> bool {
return y == true;
}
circuit Foo {}