solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/351_callcode_deprecated.sol
2018-06-19 19:31:07 +02:00

8 lines
178 B
Solidity

contract test {
function f() pure public {
address(0x12).callcode;
}
}
// ----
// TypeError: (55-77): "callcode" has been deprecated in favour of "delegatecall".