aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-07-11 21:51:58 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-07-11 21:51:58 +0800
commit1682767c6e484bb18b1be58aadcdd81ce6480aef (patch)
tree966cc483a3c7be01737e31d6b3cd605b60db1941 /test
parent0b17ff1bdde6a56d3c9b48e8c40da7ad4e9a43f5 (diff)
downloaddexon-solidity-1682767c6e484bb18b1be58aadcdd81ce6480aef.tar
dexon-solidity-1682767c6e484bb18b1be58aadcdd81ce6480aef.tar.gz
dexon-solidity-1682767c6e484bb18b1be58aadcdd81ce6480aef.tar.bz2
dexon-solidity-1682767c6e484bb18b1be58aadcdd81ce6480aef.tar.lz
dexon-solidity-1682767c6e484bb18b1be58aadcdd81ce6480aef.tar.xz
dexon-solidity-1682767c6e484bb18b1be58aadcdd81ce6480aef.tar.zst
dexon-solidity-1682767c6e484bb18b1be58aadcdd81ce6480aef.zip
Add failing implicit conversion test
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/SolidityNameAndTypeResolution.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp
index 3c49051e..637ff5cc 100644
--- a/test/libsolidity/SolidityNameAndTypeResolution.cpp
+++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp
@@ -6182,6 +6182,18 @@ BOOST_AUTO_TEST_CASE(warn_unspecified_storage)
CHECK_WARNING(text, "is declared as a storage pointer. Use an explicit \"storage\" keyword to silence this warning");
}
+BOOST_AUTO_TEST_CASE(implicit_conversion_disallowed)
+{
+ char const* text = R"(
+ contract C {
+ function f() returns (bytes4) {
+ uint32 tmp = 1;
+ return tmp;
+ }
+ }
+ )";
+ CHECK_ERROR(text, TypeError, "Return argument type uint32 is not implicitly convertible to expected type (type of first return variable) bytes4.");
+}
BOOST_AUTO_TEST_SUITE_END()