solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/419_interface_structs.sol

8 lines
168 B
Solidity
Raw Normal View History

interface I {
struct A {
}
}
// ----
// Warning: (18-34): Defining empty structs is deprecated.
// TypeError: (18-34): Structs cannot be defined in interfaces.