mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 15:15:47 +03:00
19 lines
290 B
Plaintext
19 lines
290 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file: input/dummy.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
struct Bar {
|
|
b2: u32
|
|
}
|
|
|
|
function main(y: bool) -> bool {
|
|
const Bar: u32 = 66u32;
|
|
const k1: Bar = Bar { b2: 30u32 };
|
|
|
|
return y == true;
|
|
}
|
|
}
|