Test updates after disallowing Integer -> Contract conversion

This commit is contained in:
hrkrshnn
2020-12-03 17:53:00 +01:00
parent 40244c5469
commit 9e5d7b9910
39 changed files with 85 additions and 87 deletions
@@ -3,7 +3,7 @@ contract C {
return this;
}
function g() pure public returns (bytes4) {
C x = C(0x123);
C x = C(address(0x123));
return x.f.selector;
}
}