Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
sizeof15.C
blob: 3298dad3f94d7a73586b97f89f5651d27aacd0cc [
file
] [
log
] [
blame
]
// PR c++/55685
typedef
__SIZE_TYPE__
size_t
;
template
<
size_t
T
,
size_t
U
>
struct
A
;
template
<
typename
T
>
struct
B
{
static
A
<
sizeof
(
T
),
0
>
x
;
};
template
<
typename
T
>
A
<
sizeof
(
T
),
0
>
B
<
T
>::
x
;