inherit_variables_01.sol 210 B

1234567891011
  1. abstract contract b {
  2. int private foo;
  3. }
  4. contract c is b {
  5. function getFoo() public returns (int) {
  6. return foo;
  7. }
  8. }