xref: /llvm-project/clang/test/SemaCXX/friend-out-of-line.cpp (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
3 
4 namespace N {
5   class X;
6 };
7 
8 class N::X {
9   template<typename T> friend const T& f(const X&);
10   friend const int& g(const X&);
11   friend class Y;
12 };
13