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
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nsdmi-template16.C
blob
58dec7b5844b9e46cfb3b96505e0e4a482824431
1
// PR c++/79606
2
// { dg-do compile { target c++11 } }
3
4
struct A
5
{
6
int i = 0;
7
};
8
9
template<int> struct B : A
10
{
11
int j = this->i;
12
};
13
14
B<0> b;