Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f6595cb19f570efe109abe570c726ebd7afd3973
/
.
/
test
/
SemaCXX
/
friend-out-of-line.cpp
blob: ab75a4f8ca44680d7bf92264671bc67caeac6b0f [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
// <rdar://problem/10204947>
namespace
N
{
class
X
;
};
class
N
::
X
{
template
<
typename
T
>
friend
const
T
&
f
(
const
X
&);
friend
const
int
&
g
(
const
X
&);
friend
class
Y
;
};