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