solidity/test/libsolidity/syntaxTests/types/bytes_to_contract.sol

8 lines
205 B
Solidity

contract C {
function f() public pure {
C(bytes20(uint160(0x1234)));
}
}
// ----
// TypeError: (64-91): Explicit type conversion not allowed from "bytes20" to "contract C".