blob: d2d1ad799d88e45a9b1421456a8b83e585e9c02f [file] [log] [blame]
// PR c++/38392
// { dg-do link }
void Function();
int main()
{
Function();
}
template <typename T>
struct Test
{
friend void Function() { }
};
template class Test<int>;