mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
261 B
Solidity
12 lines
261 B
Solidity
function suffix(uint x) pure suffix returns (uint) { return x; }
|
|
|
|
contract C {
|
|
function f() pure public {
|
|
assembly ("memory-safe" suffix) {
|
|
pop(0)
|
|
}
|
|
}
|
|
}
|
|
// ----
|
|
// ParserError 2314: (142-148): Expected ')' but got identifier
|