Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
3714e75eb8aa6108055ac2e718f5104bab8338d4
/
.
/
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
;