OSDN Git Service

* g++.old-deja/g++.other/eh4.C: Fix typo.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / crash12.C
1 // Build don't link:
2 // Origin: Alfred Minarik <a8601248@unet.univie.ac.at>
3 // Special g++ Options:
4
5 template<typename T>
6 struct S
7 {
8   void f() {}
9 };
10  
11 int main()
12 {
13   S<int> s;
14   int len = 50;
15   char array[len];
16   s.f();
17 }