Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / crash8.C
blob7dce9cb7237630a1511332e0bc632a6b6259a34e
1 // PR c++/58843
3 struct A {};
5 template<typename T> void foo(T t)
7   t.T::~X();  // { dg-error "no type" }
10 void bar()
12   foo(A());