Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / crash8.C
bloba6f26b30679b0110ff946e9f6efdcb5e0e197b15
1 // { dg-do compile }
3 // Origin: David Robinson <drtr@dial.pipex.com>
5 // PR c++/11513: ICE due to incorrect decision whether the tag is template.
7 template <typename T>
8 struct bar
9
10   struct foo
11   {
12     int a;
13   };
15   template <typename U>
16   int wom(U c)
17   {
18     struct foo b;
19   }