Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / parse / crash17.C
blobbdc66399f274ed08ba6d46bdf4c918f2430d9b92
1 // PR c++/16716
3 template <typename> class allocator; 
4  
5 template<typename T> class vector { 
6   // With the dg-error on the next line, we are really just trying to
7   // check that the message is not an ICE message.
8   typedef typename allocator<T> allocator_type; // { dg-error "expected|forbids" }
9 };