mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
201 B
Solidity
10 lines
201 B
Solidity
function suffix(uint, uint) pure suffix returns (uint) {}
|
|
|
|
contract C {
|
|
function f() public {
|
|
(1, 2) suffix;
|
|
}
|
|
}
|
|
// ----
|
|
// ParserError 2314: (113-119): Expected ';' but got identifier
|