mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
166 B
Solidity
7 lines
166 B
Solidity
|
function e() {}
|
||
|
contract test {
|
||
|
function f() pure public { uint e; e = 0; }
|
||
|
}
|
||
|
// ----
|
||
|
// Warning 2519: (63-69): This declaration shadows an existing declaration.
|