inherit_variables.sol 202 B

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