mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-25 11:12:48 +03:00
17 lines
244 B
Plaintext
17 lines
244 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/dummy.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
// @test
|
|
// function fake_test() {}
|
|
|
|
transition main(y: bool) -> bool {
|
|
return y == true;
|
|
}
|
|
|
|
// struct Foo {}
|
|
}
|