solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/555_no_address_members_on_contract_send_v050.sol

9 lines
212 B
Solidity
Raw Normal View History

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