rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/crash19.C

13 lines
159 B
C

// { dg-do assemble }
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
struct S {};
struct X {};
void f () {
typedef X Y;
S<Y> s;
}