mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
379 B
Solidity
16 lines
379 B
Solidity
contract C {
|
|
function f() public {
|
|
log0;
|
|
log1;
|
|
log2;
|
|
log3;
|
|
log4;
|
|
}
|
|
}
|
|
// ----
|
|
// DeclarationError 7576: (38-42): Undeclared identifier.
|
|
// DeclarationError 7576: (46-50): Undeclared identifier.
|
|
// DeclarationError 7576: (54-58): Undeclared identifier.
|
|
// DeclarationError 7576: (62-66): Undeclared identifier.
|
|
// DeclarationError 7576: (70-74): Undeclared identifier.
|