aboutsummaryrefslogtreecommitdiff
path: root/test/C++Frontend/2003-06-08-VirtualFunctions.cpp
blob: 174e514403860a4916b377986821829a37a728b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct foo {
  int y;
  foo();
  virtual int T() = 0;
};

struct bar : public foo {
  bar();
  int T() {}
};

foo::foo() : y(4) { }
bar::bar() { }
int main() { return 0; }