mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
132 B
Solidity
8 lines
132 B
Solidity
enum E { A, B, C}
|
|
|
|
contract C {
|
|
uint a = 1000 E;
|
|
}
|
|
// ----
|
|
// TypeError 6469: (45-51): Type cannot be used as a literal suffix.
|