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
/
dependent2.C
blob
a0740d404a3516b7c0703eee1af90e9d0184af0f
1
// PR c++/88757
2
// { dg-do compile { target c++11 } }
3
4
template <class T> struct C {
5
static int x;
6
};
7
template <class U> struct S {
8
static const int size = 1;
9
};
10
template <class T> int C<T>::x(S<T>::size);