leo/tests/compiler/structs/duplicate_struct_variable.leo

14 lines
129 B
Plaintext
Raw Normal View History

2022-06-23 11:38:33 +03:00
/*
namespace: Compile
expectation: Fail
*/
2022-09-30 20:48:47 +03:00
struct Bar {
2022-06-23 11:38:33 +03:00
x: u32,
x: u32,
}
function main() -> bool {
return true;
}