diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-14 06:47:55 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-14 06:48:50 +0800 |
commit | 9836d58df8372fe13590c61ad8ebce7cfbe32015 (patch) | |
tree | f2bb35369a2a3efd4db30f69f6a0b53eafea61b8 /SolidityEndToEndTest.cpp | |
parent | 8e9a9ad5e9c4ab4fe08626ef3972983b69b198a4 (diff) | |
download | dexon-solidity-9836d58df8372fe13590c61ad8ebce7cfbe32015.tar dexon-solidity-9836d58df8372fe13590c61ad8ebce7cfbe32015.tar.gz dexon-solidity-9836d58df8372fe13590c61ad8ebce7cfbe32015.tar.bz2 dexon-solidity-9836d58df8372fe13590c61ad8ebce7cfbe32015.tar.lz dexon-solidity-9836d58df8372fe13590c61ad8ebce7cfbe32015.tar.xz dexon-solidity-9836d58df8372fe13590c61ad8ebce7cfbe32015.tar.zst dexon-solidity-9836d58df8372fe13590c61ad8ebce7cfbe32015.zip |
Removing ';' from the end of EnumDefinition
Diffstat (limited to 'SolidityEndToEndTest.cpp')
-rw-r--r-- | SolidityEndToEndTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SolidityEndToEndTest.cpp b/SolidityEndToEndTest.cpp index 551607df..2ef2b803 100644 --- a/SolidityEndToEndTest.cpp +++ b/SolidityEndToEndTest.cpp @@ -2503,7 +2503,7 @@ BOOST_AUTO_TEST_CASE(using_enums) { char const* sourceCode = R"( contract test { - enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }; + enum ActionChoices { GoLeft, GoRight, GoStraight, Sit } function test() { choices = ActionChoices.GoStraight; |