mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Check for use of modifiers in invalid contexts
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
contract test {
|
||||
modifier mod() { _; }
|
||||
|
||||
function f() public {
|
||||
mod ;
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// TypeError: (77-80): Modifier can only be referenced in function headers.
|
||||
Reference in New Issue
Block a user