summaryrefslogtreecommitdiffstats
path: root/test/CXX/class.access/class.friend/p2-cxx03.cpp
blob: 0391c4b989d2e6b52fce1b0cc76991f3ca578614 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -fsyntax-only -verify %s
template<typename T>
class X0 {
  friend T; // expected-warning{{non-class type 'T' cannot be a friend}}
};

class X1 { };
enum E1 { };
X0<X1> x0a;
X0<X1 *> x0b;
X0<int> x0c;
X0<E1> x0d;

OpenPOWER on IntegriCloud