diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-05-08 00:12:58 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-05-08 23:51:53 +0800 |
commit | 960033de6bea1e436656ccc71b5152efd4314036 (patch) | |
tree | 166b2562dd326c65ca99cd655e92f1b64f7a0b2e /libsolidity/SolidityNameAndTypeResolution.cpp | |
parent | 757972b4e35ab30774355a4868b6bc5a49dda3d9 (diff) | |
download | dexon-solidity-960033de6bea1e436656ccc71b5152efd4314036.tar.gz dexon-solidity-960033de6bea1e436656ccc71b5152efd4314036.tar.zst dexon-solidity-960033de6bea1e436656ccc71b5152efd4314036.zip |
fixed the test
Diffstat (limited to 'libsolidity/SolidityNameAndTypeResolution.cpp')
-rw-r--r-- | libsolidity/SolidityNameAndTypeResolution.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/libsolidity/SolidityNameAndTypeResolution.cpp b/libsolidity/SolidityNameAndTypeResolution.cpp index 9616777a..c317dad9 100644 --- a/libsolidity/SolidityNameAndTypeResolution.cpp +++ b/libsolidity/SolidityNameAndTypeResolution.cpp @@ -1761,25 +1761,6 @@ BOOST_AUTO_TEST_CASE(uninitialized_var) BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError); } -BOOST_AUTO_TEST_CASE(deny_overwriting_of_attributes_when_deriving) -{ - // bug #1798 - char const* sourceCode = R"( - contract owned { - address owner; - } - - contract reg { - function owner(bytes32 x) returns (address) {} - } - - contract x is owned, reg { - } - )"; - ETH_TEST_CHECK_NO_THROW(parseTextAndResolveNames(sourceCode), "Parsing and Name Resolving Failed"); - //BOOST_CHECK_THROW(parseTextAndResolveNames(sourceCode), TypeError); -} - BOOST_AUTO_TEST_SUITE_END() } |