Fix some styling issues and remove comments

This commit is contained in:
Lefteris Karapetsas 2015-03-30 17:18:38 +02:00
parent 621215918d
commit de09be29ba

View File

@ -386,8 +386,8 @@ BOOST_AUTO_TEST_CASE(create_abstract_contract)
contract base { function foo(); } contract base { function foo(); }
contract derived { contract derived {
base b; base b;
function foo() { b = new base();} function foo() { b = new base();}
} }
)"; )";
BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError); BOOST_CHECK_THROW(parseTextAndResolveNames(text), TypeError);
} }