mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
364 B
Solidity
12 lines
364 B
Solidity
function suffix(address a) pure suffix returns (address) { return a; }
|
|
|
|
contract C {
|
|
function f() public pure {
|
|
0x0000000000000000000000000000000000000000 suffix;
|
|
0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF suffix;
|
|
0x1234567890123456789012345678901234567890 suffix;
|
|
|
|
0x1234567890_1234567890_1234567890_1234567890 suffix;
|
|
}
|
|
}
|