solidity/test/libsolidity/syntaxTests/types/bytes_to_contract.sol
2018-04-19 15:58:14 +02:00

8 lines
196 B
Solidity

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