2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / p3524c.C
blob2f5d23bed67647350fbd1e77ffdb63ebf93c5638
1 // { dg-do assemble  }
2 // Make sure we can cast to a templated type, that requires a conversion by
3 // constructor, from a non-aggregate type.
5 // prms-id: 3524
7 template <class T>
8 struct ccPair {
9     ccPair (int i) { }
12 void foo ()
14   (ccPair<float>)1;