mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
193 B
Solidity
14 lines
193 B
Solidity
contract C {
|
|
uint public i;
|
|
uint public k;
|
|
|
|
constructor(uint newI, uint newK) {
|
|
i = newI;
|
|
k = newK;
|
|
}
|
|
}
|
|
contract D is C(2, 1) {}
|
|
// ----
|
|
// i() -> 2
|
|
// k() -> 1
|