test_super_02.sol 181 B

12345678910
  1. contract a {
  2. function f1() public {}
  3. }
  4. contract b is a {
  5. function f2() public {
  6. super.f2();
  7. }
  8. }