leo/tests/compiler/structs/duplicate_struct_variable.leo
2022-09-30 13:20:23 -07:00

14 lines
129 B
Plaintext

/*
namespace: Compile
expectation: Fail
*/
struct Bar {
x: u32,
x: u32,
}
function main() -> bool {
return true;
}