solidity/test/libsolidity/syntaxTests/inlineAssembly/create2_as_variable_post_istanbul.sol

10 lines
154 B
Solidity
Raw Normal View History

contract c {
function f() public {
uint create2; create2;
assembly { pop(create2(0, 0, 0, 0)) }
}
}
// ====
// EVMVersion: >=constantinople
// ----