aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/crash39.C
blob: 2c4bb5a4115dbd122822af5f02c21764b5e933e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Build don't link:
// Origin: Ian Nixon <ian@tharas.com>

class Action {
public:
  virtual void action () = 0;
};

class Var {
public:

  template<class Base> void Add() {
	struct tmp : public Action {
	  void action () {}
	};
	tmp *tp = new tmp; 
  }

};