Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / parse / crash17.C
blobe50f07af4a85da6857290e97c604a9fbd9c35ce4
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|invalid" }
9 };