mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
209 B
Solidity
17 lines
209 B
Solidity
function g() public;
|
|
|
|
interface I {
|
|
struct S { S s; }
|
|
|
|
function f(E storage e) {
|
|
error E;
|
|
emit E();
|
|
|
|
++c;
|
|
uint calldata c = 123.4;
|
|
}
|
|
}
|
|
|
|
// ----
|
|
// failAfter: Parsed
|