leo/tests/compiler/structs/duplicate_struct_variable.leo
2022-10-05 16:53:49 -07:00

16 lines
187 B
Plaintext

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