blob: 56b2daab4c4f11a0a76bdd2018de8f90cd423a35 [file] [log] [blame]
Douglas Gregorfb35e8f2011-11-03 16:37:14 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3// <rdar://problem/10204947>
4namespace N {
5 class X;
6};
7
8class N::X {
9 template<typename T> friend const T& f(const X&);
10 friend const int& g(const X&);
11 friend class Y;
12};