// { dg-do assemble } // // Copyright (C) 2000 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 14 Aug 2000 // bug 42. We ICE'd on instantiating a template with a bogus templated friend. template struct X { template friend X; // { dg-error "" } friend must use aggr tag }; X g;