summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/friend47.C
blob: 66b214d1f053d1a15e67022c402ff3fd8b742238 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do assemble  }

// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 7 Jan 2001 <nathan@codesourcery.com>

// Bug 1033. We ICE'd when trying to make a non template class a templated
// friend.

class A {};
class B {
  template<class T> friend class A;   // { dg-error "" } not a template
};