netbsd/external/bsd/llvm/dist/clang/test/SemaTemplate/instantiate-friend-class.cpp
2014-01-15 10:53:42 +01:00

11 lines
143 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
// PR4794
template <class T> class X
{
friend class Y;
};
X<int> y;