mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
a211b89118
This patch enfoces an error when it encounters an empty struct, effectively eliminating the deprecation warning. Also adjust 419_interface_structs to explicitely test for (non-empty) structs, as this behaviour "may" change in the future.
6 lines
102 B
Solidity
6 lines
102 B
Solidity
contract test {
|
|
struct A {}
|
|
}
|
|
// ----
|
|
// SyntaxError: (17-28): Defining empty structs is disallowed.
|