1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
14 lines
241 B
C++
14 lines
241 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
template<typename T>
|
|
class X0 {
|
|
friend T; // expected-warning{{non-class friend type 'T' is a C++11 extension}}
|
|
};
|
|
|
|
class X1 { };
|
|
enum E1 { };
|
|
X0<X1> x0a;
|
|
X0<X1 *> x0b;
|
|
X0<int> x0c;
|
|
X0<E1> x0d;
|
|
|