mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
153 B
Solidity
8 lines
153 B
Solidity
library test {
|
|
modifier m virtual;
|
|
function f() m public {
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 3275: (19-38): Modifiers in a library cannot be virtual.
|