Allow duplicate modifiers on same function (#596)
parent
23f798792b
commit
2be29b2edb
@ -0,0 +1,15 @@ |
|||||||
|
pragma solidity ^0.7.0; |
||||||
|
|
||||||
|
contract Test { |
||||||
|
modifier m(string memory val) { |
||||||
|
_; |
||||||
|
} |
||||||
|
|
||||||
|
function a() |
||||||
|
m('ETH') |
||||||
|
m('BTC') |
||||||
|
public |
||||||
|
{ |
||||||
|
uint x = 5; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue