blob: 720dfeba0e245a1d03ed52df6af841a8f516aea6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// { dg-do assemble }
//
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 14 Aug 2000 <nathan@codesourcery.com>
// bug 42. We ICE'd on instantiating a template with a bogus templated friend.
template<typename T> struct X
{
template<typename D> friend X<D>; // { dg-error "" } friend must use aggr tag
};
X<int> g;
|