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
/
enum5.C
blob
b7a49f45d0f11b27f276bbf0a99af28f398fadf1
1
// { dg-do compile }
2
3
// Origin: robertk@mathematik.uni-freiburg.de
4
// Wolfgang Bangerth <bangerth@ticam.utexas.edu>
5
6
// PR c++/14479: Template header check for enum
7
8
template <int dim>
9
struct X {
10
enum { dimension = dim };
11
template<int d> void bar ();
12
};
13
14
template <>
15
template <>
16
void X<0>::bar<0> () {}