mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
279 B
Solidity
16 lines
279 B
Solidity
contract c {
|
|
function f() public
|
|
{
|
|
a = 1 wei;
|
|
b = 2 szabo;
|
|
c = 3 finney;
|
|
b = 4 ether;
|
|
}
|
|
uint256 a;
|
|
uint256 b;
|
|
uint256 c;
|
|
uint256 d;
|
|
}
|
|
// ----
|
|
// Warning: (170-179): This declaration shadows an existing declaration.
|