summaryrefslogtreecommitdiff
path: root/Examples/test-suite/packageoption.h
blob: 82f29d1c7471ade60e439516b91fc97a43a5db8c (plain)
1
2
3
4
5
6
struct Base {
  virtual int vmethod() { return 1; }
  int basemethod() { return 1; }
  virtual ~Base() {}
};