mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
221 B
Solidity
8 lines
221 B
Solidity
contract C {
|
|
modifier mu;
|
|
modifier muv virtual;
|
|
}
|
|
// ----
|
|
// TypeError 3656: (0-57): Contract "C" should be marked as abstract.
|
|
// TypeError 8063: (17-29): Modifiers without implementation must be marked virtual.
|