repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash6.C
blob
776e01ebb6dbf9451594f8e84f72bbfb757c64b3
1
template <class> struct A { static const int n = 1; } ;
2
template <int> struct B;
3
4
template <class S>
5
struct restype_order {
6
static const int s = A<S>::n;
7
typedef typename B<(s > 0)>::t t;
8
};