solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/555_no_address_members_on_contract_send_v050.sol
2018-07-16 16:11:39 +01:00

9 lines
213 B
Solidity

pragma experimental "v0.5.0";
contract C {
function f() public {
this.send;
}
}
// ----
// TypeError: (77-86): Member "send" not found or not visible after argument-dependent lookup in contract C.