repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
shift1.C
blob
22cb0de95bed255f01b58f877f00cb7e8f288b38
1
// PR c++/18140
2
3
template <int N> struct IntHolder {
4
static const int value = N;
5
};
6
7
template <int N, int S> struct ShrIntHolder {
8
static const int value = IntHolder< N>>S >::value;
9
};
10