Merge pull request #3941 from ethereum/bytes-contract

Disallow explicit conversion of bytesXX to contract
This commit is contained in:
chriseth
2018-04-19 16:10:15 +02:00
committed by GitHub
3 changed files with 8 additions and 1 deletions
@@ -0,0 +1,7 @@
contract C {
function f() public pure {
C(bytes20(0x1234));
}
}
// ----
// TypeError: (64-82): Explicit type conversion not allowed from "bytes20" to "contract C".