solidity/test/libsolidity/syntaxTests/types/empty_tuple_event.sol
2018-04-22 16:54:33 +02:00

11 lines
267 B
Solidity

pragma solidity ^0.4.3;
contract C {
event SomeEvent();
function a() public {
(SomeEvent(), 7);
}
}
// ----
// Warning: (95-106): Invoking events without "emit" prefix is deprecated.
// TypeError: (95-106): Type of tuple component cannot be null.