Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
shift1.C
blob: a4ceec92c3afa09c26bfbf4cc1b2c35aa8c9f2d5 [
file
] [
log
] [
blame
]
// PR c++/18140
// { dg-options "-std=gnu++98" }
template
<
int
N
>
struct
IntHolder
{
static
const
int
value
=
N
;
};
template
<
int
N
,
int
S
>
struct
ShrIntHolder
{
static
const
int
value
=
IntHolder
<
N
>>
S
>::
value
;
};