aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-04-19 06:47:56 +0800
committerchriseth <chris@ethereum.org>2018-04-19 21:58:14 +0800
commit754d79edfabd8a199a51411a865d75274fcb4169 (patch)
tree0c11c8a093eb61fb6c0d4290c48b3e3cf2ae3055 /test
parent39b7b44a8d63c9e50911ba724221b4a6399e7f5e (diff)
downloaddexon-solidity-754d79edfabd8a199a51411a865d75274fcb4169.tar.gz
dexon-solidity-754d79edfabd8a199a51411a865d75274fcb4169.tar.zst
dexon-solidity-754d79edfabd8a199a51411a865d75274fcb4169.zip
Disallow explicit conversion of bytesXX to contract
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/syntaxTests/types/bytes_to_contract.sol7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/types/bytes_to_contract.sol b/test/libsolidity/syntaxTests/types/bytes_to_contract.sol
new file mode 100644
index 00000000..2a3219ec
--- /dev/null
+++ b/test/libsolidity/syntaxTests/types/bytes_to_contract.sol
@@ -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".