mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-20 05:41:35 +00:00
- Solidity Upgraded up to v0.8.0 - Fixed and Added eth_chainId - Fix error in TransactionRecipet - Reward halving issue fixed
9 lines
233 B
Solidity
9 lines
233 B
Solidity
pragma solidity ^0.6.0;
|
|
contract Test {
|
|
address x;
|
|
}
|
|
contract TestOverride is Test {
|
|
// This declaration would throw an error because its shadowing a
|
|
// state variable already in its base inherited contract Test
|
|
address x;
|
|
}
|