summaryrefslogtreecommitdiff
path: root/tests/exec/inheritance2.cpp
blob: 272b341208522ba895dc24ff67b8c921fa58f74c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <iostream>

class A {
public:
  virtual void f();
};

class B : public A {
public:
  void f();
};

void A::f() {
  std::cout << "this is A::f" << "\n";
}

void B::f() {
  std::cout << "this is B::f" << "\n";
}

int main() {
  A *a = new A();
  a->f();
  a = new B();
  a->f();
}