2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / friend39.C
blob9ebe226eb6fb1756e2f99a90cf367e49400e5602
1 // PR c++/8355
3 namespace Foo { template <typename T> void foo();}
4 struct Bar
6   friend void Foo::foo<int>();
7 };