mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
165 B
Solidity
8 lines
165 B
Solidity
contract C {
|
|
uint a = 1000 suffix;
|
|
|
|
modifier suffix(uint x) { _; }
|
|
}
|
|
// ----
|
|
// TypeError 5704: (26-37): This expression cannot be used as a literal suffix.
|