solidity/test/libsolidity/syntaxTests/structs/global_structs_name_clash.sol
2022-04-01 23:41:18 -05:00

5 lines
146 B
Solidity

struct S { uint256 a; }
struct S { uint256 a; }
// ----
// DeclarationError 2333: (24-47='struct S { uint256 a; }'): Identifier already declared.