mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-27 12:13:41 +03:00
16 lines
200 B
Plaintext
16 lines
200 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
*/
|
|
|
|
program test.aleo {
|
|
struct Foo {
|
|
x: u8;
|
|
}
|
|
|
|
function main() {
|
|
const y: u8 = 1;
|
|
const a: Foo = Foo { y };
|
|
}
|
|
}
|