diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-05-21 00:38:52 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-05-21 00:38:52 +0800 |
commit | 19262c12cf0ed9fe4377410e25706effe5d92716 (patch) | |
tree | 3605dd5f129b3610d089d7a98b5225fa9d57c682 /libsolidity | |
parent | a92591e5193b42200163b907b3ef4e36b08636ce (diff) | |
download | dexon-solidity-19262c12cf0ed9fe4377410e25706effe5d92716.tar dexon-solidity-19262c12cf0ed9fe4377410e25706effe5d92716.tar.gz dexon-solidity-19262c12cf0ed9fe4377410e25706effe5d92716.tar.bz2 dexon-solidity-19262c12cf0ed9fe4377410e25706effe5d92716.tar.lz dexon-solidity-19262c12cf0ed9fe4377410e25706effe5d92716.tar.xz dexon-solidity-19262c12cf0ed9fe4377410e25706effe5d92716.tar.zst dexon-solidity-19262c12cf0ed9fe4377410e25706effe5d92716.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 6b7007a2..88a3613a 100644 --- a/libsolidity/SolidityEndToEndTest.cpp +++ b/libsolidity/SolidityEndToEndTest.cpp @@ -4049,7 +4049,7 @@ BOOST_AUTO_TEST_CASE(struct_assign_reference_to_struct) x.m_value = 3; data3 = x; //should copy the data. data3.m_value == 3 ret_global3 = data3.m_value; // = 3 - ret_global1 = data1.m_value; // = 3 + ret_global1 = data1.m_value; // = 3. Changed due to the assignment to x.m_value } } )"; |