Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
debug
/
template1.C
blob: 279b4b17337c58ab8d00afdcce0e8da39874ec75 [
file
] [
log
] [
blame
]
// PR c++/5118
template
<
int
Count
>
class
d
{
public
:
d
()
{
myInt
=
Count
;
}
int
myInt
;
virtual
~
d
()
{}
};
volatile
d
<
5
>
instD
;