aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/351_callcode_deprecated.sol
blob: 554f2e11ed657b636222c861ee65bb9be0893109 (plain) (blame)
1
2
3
4
5
6
7
contract test {
    function f() pure public {
        address(0x12).callcode;
    }
}
// ----
// TypeError: (55-77): "callcode" has been deprecated in favour of "delegatecall".