Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / t38.C
blob5a9da92f8ddd713f1e79977d94392e7a03bc1ab7
1 // { dg-do assemble  }
2 // { dg-options "" }
3 extern "C" int printf (const char *, ...);
5 template<class X> struct A {
6   A (int, char);
7   ~A ();
8   A (X *, float);
9 };
11 template<class Y> inline A<Y>::A (int i, char c) {
12   printf ("%d, %d\n", i, c);
14 template<class Z> A<Z>::~A() {}
15 template<class W> A<W>::A (W * d, float f) {
16   printf ("%x, %e\n", d, f);
19 A<void> avoid (9, 0);