]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/g++.old-deja/g++.jason/mangle2.C
g++-dg.exp (g++-dg-test): Add "repo" option.
[thirdparty/gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / mangle2.C
CommitLineData
6481daa9 1// { dg-do assemble }
921e5a0e 2// I guess this was broken once.
921e5a0e
JL
3
4template <class C, int D> class X { };
5typedef X<int, 0> T;
6
7class Y
8{
9 public:
10 ~Y();
11};
12
13class Z
14{
15 public:
16 void f(T**);
17};
18
19void Z::f(T** t)
20{ }
21
22Y::~Y()
23{ }