solidity/test/libsolidity/syntaxTests/structs/global_structs_name_clash.sol
2019-09-02 11:17:42 +02:00

5 lines
115 B
Solidity

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