Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
1f35ec3c2c5662644c07969a1b5c5ad748764285
/
.
/
test
/
SemaTemplate
/
instantiate-friend-class.cpp
blob: 32aa3014b9cbfe3ef1afbe1bcc982c7f333776e3 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
// PR4794
template
<
class
T
>
class
X
{
friend
class
Y
;
};
X
<int>
y
;