llvm-for-llvmta/tools/clang/test/CXX/temp/temp.decls/temp.friend/p8.cpp

7 lines
205 B
C++
Raw Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
template<class T> class A { };
class X {
template<class T> friend class A<T*>; // expected-error{{partial specialization cannot be declared as a friend}}
};