mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
134 B
Solidity
8 lines
134 B
Solidity
function suffix(uint x) pure suffix returns (uint) { return x; }
|
|
|
|
contract C {
|
|
function f() public pure {
|
|
suffix;
|
|
}
|
|
}
|