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

18 lines
222 B
C

// { dg-do assemble }
// { dg-options "" }
// Origin: Alfred Minarik <a8601248@unet.univie.ac.at>
template<typename T>
struct S
{
void f() {}
};
int main()
{
S<int> s;
int len = 50;
char array[len];
s.f();
}