aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/350_unused_return_value_delegatecall.sol
blob: 701b6e7db6cd5ce906b1a5206cf5058f5d103daf (plain) (blame)
1
2
3
4
5
6
7
contract test {
    function f() public {
        address(0x12).delegatecall("abc");
    }
}
// ----
// Warning: (50-83): Return value of low-level calls not used.