2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / alias-mangle.C
bloba7706e996d020704f4a96d62907c1b2f1fea8543
1 // PR c++/34936
2 // { dg-do compile }
3 /* { dg-final { scan-assembler "_ZN1AIdEC1Ev" } } */
4 typedef double X __attribute((may_alias)) ;
6 template<typename> struct A
8   A();
9 };
11 A<X> a;