xref: /minix3/external/bsd/llvm/dist/clang/test/CXX/class.access/class.friend/p2-cxx03.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fsyntax-only -verify %s
2*f4a2713aSLionel Sambuc template<typename T>
3*f4a2713aSLionel Sambuc class X0 {
4*f4a2713aSLionel Sambuc   friend T; // expected-warning{{non-class friend type 'T' is a C++11 extension}}
5*f4a2713aSLionel Sambuc };
6*f4a2713aSLionel Sambuc 
7*f4a2713aSLionel Sambuc class X1 { };
8*f4a2713aSLionel Sambuc enum E1 { };
9*f4a2713aSLionel Sambuc X0<X1> x0a;
10*f4a2713aSLionel Sambuc X0<X1 *> x0b;
11*f4a2713aSLionel Sambuc X0<int> x0c;
12*f4a2713aSLionel Sambuc X0<E1> x0d;
13*f4a2713aSLionel Sambuc 
14