mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
241 B
Solidity
9 lines
241 B
Solidity
function uSuffix(uint8) pure suffix returns (uint) {}
|
|
function uSuffix(uint16) pure suffix returns (int) {}
|
|
|
|
contract C {
|
|
int a = 1024 uSuffix;
|
|
}
|
|
// ----
|
|
// TypeError 2144: (139-146): No matching declaration found after variable lookup.
|