mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
267 B
Solidity
15 lines
267 B
Solidity
|
contract C {
|
||
|
function f() public pure {
|
||
|
assembly {
|
||
|
let shl := 1
|
||
|
}
|
||
|
assembly {
|
||
|
pop(shl(1, 2))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// EVMVersion: >=constantinople
|
||
|
// ----
|
||
|
// ParserError 5568: (67-70): Cannot use builtin function name "shl" as identifier name.
|