Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.law / operators22.C
blob2d18e0803715a702778135644f6d379676601d5d
1 // { dg-do assemble  }
2 // GROUPS passed operators
3 template <class T>
4 class t {
5 public:
6   t() {}
7 };
9 class m {
10   t<int> c;
11 public:
12   m() : c() {}
15 m *p() {return new m;}