diff options
Diffstat (limited to 'test/libsolidity/syntaxTests/inheritance/override/function_state_variable.sol')
-rw-r--r-- | test/libsolidity/syntaxTests/inheritance/override/function_state_variable.sol | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/inheritance/override/function_state_variable.sol b/test/libsolidity/syntaxTests/inheritance/override/function_state_variable.sol new file mode 100644 index 00000000..023a161a --- /dev/null +++ b/test/libsolidity/syntaxTests/inheritance/override/function_state_variable.sol @@ -0,0 +1,2 @@ +interface ERC20 { function x() external returns (uint); } +contract C is ERC20 { uint public x; } |