mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
changed the position of 'anonymous' keyword: event <name>() anonymous.
- style changes
This commit is contained in:
parent
5dc9a8df92
commit
26b2b4d9a6
@ -2206,7 +2206,7 @@ BOOST_AUTO_TEST_CASE(event_anonymous)
|
|||||||
{
|
{
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
contract ClientReceipt {
|
contract ClientReceipt {
|
||||||
event anonymous Deposit();
|
event Deposit() anonymous;
|
||||||
function deposit() {
|
function deposit() {
|
||||||
Deposit();
|
Deposit();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user