mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
274 B
Solidity
18 lines
274 B
Solidity
==== Source: ERC20.sol ====
|
|
contract ERC20 {
|
|
uint256 private a;
|
|
function f() internal virtual {
|
|
a = 2;
|
|
}
|
|
}
|
|
==== Source: Token.sol ====
|
|
import "ERC20.sol";
|
|
contract Token is ERC20 {
|
|
constructor() {
|
|
f();
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|