solidity/test/libsolidity/syntaxTests/inlineAssembly/reserved_identifiers_constantinople.sol
Alex Beregszaszi c032ad3379 Update tests
2020-12-10 17:18:15 +01:00

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.