solidity/test/libsolidity/syntaxTests/types/address/address_to_contract.sol
2018-09-12 16:21:43 +02:00

7 lines
93 B
Solidity

contract C {
function f() public pure returns (C c) {
c = C(address(2));
}
}
// ----