Disallow explicit conversion of bytesXX to contract

This commit is contained in:
Alex Beregszaszi
2018-04-19 15:58:14 +02:00
committed by chriseth
parent 39b7b44a8d
commit 754d79edfa
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".