mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-18 23:02:35 +03:00
14 lines
150 B
Plaintext
14 lines
150 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
*/
|
|
|
|
circuit Foo {
|
|
x: u32;
|
|
}
|
|
|
|
function main() {
|
|
// no member y in Foo
|
|
const a = Foo { y: 0u32 };
|
|
}
|