mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
468 B
Solidity
15 lines
468 B
Solidity
function suffix256(uint) pure returns (int) {}
|
|
function suffix256(uint, uint) pure returns (int) {}
|
|
|
|
function suffix8(uint) pure returns (int) {}
|
|
function suffix8(uint8, uint) pure returns (int) {}
|
|
|
|
contract C {
|
|
function f() public pure {
|
|
int a = 1.1 suffix256; // TODO: Should match only (uint, uint)
|
|
int b = 1024 suffix8; // TODO: Should match only uint
|
|
}
|
|
}
|
|
// ----
|
|
// DeclarationError 7920: (263-272): Identifier not found or not unique.
|