leo/tests/compiler/definition/out_of_order.leo

15 lines
186 B
Plaintext
Raw Normal View History

2021-05-03 16:47:33 +03:00
/*
namespace: Compile
expectation: Pass
input_file: inputs/dummy.in
2021-05-03 16:47:33 +03:00
*/
// @test
// function fake_test() {}
2022-10-04 00:56:14 +03:00
transition main(y: bool) -> bool {
return y == true;
}
2022-09-30 20:48:47 +03:00
// struct Foo {}