solidity/test/libsolidity/syntaxTests/parsing/modifier_invocation.sol

7 lines
191 B
Solidity
Raw Normal View History

2018-05-17 07:04:39 +00:00
contract c {
modifier mod1(uint a) { if (msg.sender == address(uint160(a))) _; }
2018-05-17 07:04:39 +00:00
modifier mod2 { if (msg.sender == address(2)) _; }
function f() public mod1(7) mod2 { }
2018-05-17 07:04:39 +00:00
}
// ----