repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[gcn] install.texi: Update for new ISA targets and their requirements
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
friend52.C
blob
d4fecd95ed42d7a603f02c037ed99f8c444d4dec
1
// PR c++/50344
2
// { dg-options "" }
3
4
template <typename T> class C
5
{
6
friend T;
7
int i;
8
};
9
10
struct S
11
{
12
int f()
13
{
14
C<const S> c;
15
return c.i;
16
}
17
};