diff options
author | chriseth <chris@ethereum.org> | 2018-12-13 00:00:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-13 00:00:50 +0800 |
commit | 87237281bf252b7afcf5d1295e75a03bf41ac864 (patch) | |
tree | bb04e0727932ff612735060893a5c37b2a30a99e /test/libsolidity/syntaxTests/parsing/modifier_invocation.sol | |
parent | 7e9a29090c29a8fb678f348fa7333a7658d70cf6 (diff) | |
parent | 8c49d86e6b2422757fe5579711ef7cdf1718b81c (diff) | |
download | dexon-solidity-87237281bf252b7afcf5d1295e75a03bf41ac864.tar.gz dexon-solidity-87237281bf252b7afcf5d1295e75a03bf41ac864.tar.zst dexon-solidity-87237281bf252b7afcf5d1295e75a03bf41ac864.zip |
Merge pull request #5630 from ethereum/warn_functions_empty_body
Supress unused var and state mut warnings for functions with empty body
Diffstat (limited to 'test/libsolidity/syntaxTests/parsing/modifier_invocation.sol')
-rw-r--r-- | test/libsolidity/syntaxTests/parsing/modifier_invocation.sol | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/libsolidity/syntaxTests/parsing/modifier_invocation.sol b/test/libsolidity/syntaxTests/parsing/modifier_invocation.sol index cf986efe..6fa007c7 100644 --- a/test/libsolidity/syntaxTests/parsing/modifier_invocation.sol +++ b/test/libsolidity/syntaxTests/parsing/modifier_invocation.sol @@ -4,4 +4,3 @@ contract c { function f() public mod1(7) mod2 { } } // ---- -// Warning: (135-171): Function state mutability can be restricted to view |