mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
198 B
Solidity
8 lines
198 B
Solidity
contract C {
|
|
uint a = 1000 suffix;
|
|
|
|
modifier suffix(uint x) { _; }
|
|
}
|
|
// ----
|
|
// TypeError 4438: (26-37): The literal suffix must be either a subdenomination or a file-level suffix function.
|