Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / debug / pr22514.C
blob23dc9b2b061a4bad853096a64b5782e39afcf2e0
1 /* { dg-do compile } */
2 namespace s
4   template <int> struct _List_base
5   {
6      int _M_impl;
7   };
8   template<int i> struct list : _List_base<i>
9   {
10     using _List_base<i>::_M_impl;
11   }
12 }  /* { dg-error "expected unqualified-id before '\}'" } */
13 s::list<1> OutputModuleListType;  /* { dg-error "expected" } */