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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nsdmi-template10.C
blob
4a8c87e6d87a96541a0972f52b43ae5a6a8d7fc2
1
// PR c++/60999
2
// { dg-do compile { target c++11 } }
3
4
struct B
5
{
6
template<int N, int M>
7
struct A;
8
9
template<int M>
10
struct A<1, M>
11
{
12
int X = M;
13
};
14
};