repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[SmallPtrSet] Remove SmallArray member (NFC) (#118099)
[llvm-project.git]
/
clang
/
test
/
SemaTemplate
/
instantiate-friend-class.cpp
blob
32aa3014b9cbfe3ef1afbe1bcc982c7f333776e3
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
// PR4794
4
5
template
<
class
T
>
class
X
6
{
7
friend class
Y
;
8
};
9
X
<
int
>
y
;
10