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
PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
debug
/
template1.C
blob
279b4b17337c58ab8d00afdcce0e8da39874ec75
1
// PR c++/5118
2
3
template <int Count>
4
class d
5
{
6
public:
7
d()
8
{
9
myInt = Count;
10
}
11
int myInt;
12
virtual ~d() {}
13
};
14
15
volatile d<5> instD;