Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
c5c54f2c7bbc000dbcaee5e0acec2dbb0c0f0cf8
/
.
/
test
/
SemaTemplate
/
instantiate-friend-class.cpp
blob: 004bf1b74997dbcc3dcd1efa096412c1eace7186 [
file
] [
log
] [
blame
]
Eli Friedman
c5c54f2
2009-08-27 18:38:56 +0000
[
diff
] [
blame^
]
1
// RUN: clang-cc -fsyntax-only -verify %s
2
3
template
<
class
T
>
class
X
4
{
5
friend
class
Y
;
6
};
7
X
<int>
y
;
8