Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / hidden-temp-class1.C
blob8cdb235e8fcff88d1d7ade12ab65c61f93479650
1 // Copyright (C) 2005 Free Software Foundation
2 // Contributed by Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
3 // { dg-do compile }
5 class A {
6   template <class T> friend class B;
7   B<int> *b;    // { dg-error "type|expected" }
8 };