diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-05-21 00:40:00 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-05-21 00:40:00 +0800 |
commit | e38eefa9f6116fc5e993c78b305e70f7076dda62 (patch) | |
tree | 23a28b958c0c769f762fb23f718825857f3abe39 /libsolidity | |
parent | 19262c12cf0ed9fe4377410e25706effe5d92716 (diff) | |
download | dexon-solidity-e38eefa9f6116fc5e993c78b305e70f7076dda62.tar.gz dexon-solidity-e38eefa9f6116fc5e993c78b305e70f7076dda62.tar.zst dexon-solidity-e38eefa9f6116fc5e993c78b305e70f7076dda62.zip |
Update SolidityEndToEndTest.cpp
Diffstat (limited to 'libsolidity')
-rw-r--r-- | libsolidity/SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/SolidityEndToEndTest.cpp b/libsolidity/SolidityEndToEndTest.cpp index 88a3613a..503615a5 100644 --- a/libsolidity/SolidityEndToEndTest.cpp +++ b/libsolidity/SolidityEndToEndTest.cpp @@ -4075,7 +4075,7 @@ BOOST_AUTO_TEST_CASE(struct_delete_member) testStruct x = data1; //should not copy the data. data1.m_value == 2 but x.m_value = 0 x.m_value = 4; delete x.m_value; - ret_value = x.m_value; + ret_value = data1.m_value; } } )"; |