Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / koenig7.C
blobbc54ba96b6b95aa4823a9bd74256a547b153654b
1 // PR c++/34870
3 template <typename T>
4 struct Foo
6   friend void func(const Foo &) {}
7 };
9 void check(const Foo<int> & x)
11   func(x);