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
/
error6.C
blob
7560dcfb51fa6eb38103e5ee321d1ee52c812283
1
template<int n>
2
struct tento {
3
enum {value = 10*tento<n-1>::value};
4
};
5
6
struct tento<0> { // { dg-error "" }
7
enum {value=1};
8
};
9
10
int main() {
11
if (tento<4>::value != 10000) return -1;
12
}
13