diff options
author | Christian <c@ethdev.com> | 2015-01-27 21:32:59 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-01-29 07:29:43 +0800 |
commit | c3cc5b737a94df8e5f2ecce17a1ca26a744c538d (patch) | |
tree | a532f70e6ca226b863235eb92187eb5357ba0e32 /SolidityCompiler.cpp | |
parent | 4e67aa413e16a00c5056eb388bcf3bb011a7be57 (diff) | |
download | dexon-solidity-c3cc5b737a94df8e5f2ecce17a1ca26a744c538d.tar.gz dexon-solidity-c3cc5b737a94df8e5f2ecce17a1ca26a744c538d.tar.zst dexon-solidity-c3cc5b737a94df8e5f2ecce17a1ca26a744c538d.zip |
Super keyword.
Diffstat (limited to 'SolidityCompiler.cpp')
-rw-r--r-- | SolidityCompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SolidityCompiler.cpp b/SolidityCompiler.cpp index 53daa9df..e7e64805 100644 --- a/SolidityCompiler.cpp +++ b/SolidityCompiler.cpp @@ -111,8 +111,8 @@ BOOST_AUTO_TEST_CASE(smoke_test) BOOST_AUTO_TEST_CASE(different_argument_numbers) { char const* sourceCode = "contract test {\n" - " function f(uint a, uint b, uint c) returns(uint d) { return b; }\n" " function g() returns (uint e, uint h) { h = f(1, 2, 3); }\n" + " function f(uint a, uint b, uint c) returns(uint d) { return b; }\n" "}\n"; bytes code = compileContract(sourceCode); unsigned shift = 103; |