aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-05-21 00:38:52 +0800
committerLiana Husikyan <liana@ethdev.com>2015-05-21 00:38:52 +0800
commit19262c12cf0ed9fe4377410e25706effe5d92716 (patch)
tree3605dd5f129b3610d089d7a98b5225fa9d57c682 /libsolidity
parenta92591e5193b42200163b907b3ef4e36b08636ce (diff)
downloaddexon-solidity-19262c12cf0ed9fe4377410e25706effe5d92716.tar.gz
dexon-solidity-19262c12cf0ed9fe4377410e25706effe5d92716.tar.zst
dexon-solidity-19262c12cf0ed9fe4377410e25706effe5d92716.zip
Update SolidityEndToEndTest.cpp
Diffstat (limited to 'libsolidity')
-rw-r--r--libsolidity/SolidityEndToEndTest.cpp2
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
}
}
)";