Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash6.C
blob: 776e01ebb6dbf9451594f8e84f72bbfb757c64b3 [
file
] [
log
] [
blame
]
template
<class>
struct
A
{
static
const
int
n
=
1
;
}
;
template
<int>
struct
B
;
template
<
class
S
>
struct
restype_order
{
static
const
int
s
=
A
<
S
>::
n
;
typedef
typename
B
<(
s
>
0
)>::
t t
;
};