Sign in
cobalt
/
cobalt
/
5cb259d50f6e15a7a4b4262c245550c9e567a308
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
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
;
};