mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
276 B
Solidity
9 lines
276 B
Solidity
contract C {
|
|
event E(uint x);
|
|
|
|
uint a = 1000 E;
|
|
}
|
|
// ----
|
|
// TypeError 4438: (53-54): The literal suffix must be either a subdenomination or a file-level suffix function.
|
|
// TypeError 7407: (48-54): Type tuple() is not implicitly convertible to expected type uint256.
|