Sign in
gnu
/
gcc
/
19220ca6aa79921cc431e41f25986e16410c7a6a
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
spec6.C
blob: 915b8331252140d952ea44f7ae2d12e7588f1bb5 [
file
] [
log
] [
blame
]
template
<
bool
,
int
>
struct
X
{};
template
<
bool
C
>
struct
X
<
C
,
1
>
{
typedef
double
*
type
;
type foo
()
const
;
};
template
<
bool
C
>
typename
X
<
C
,
1
>::
type
X
<
C
,
1
>::
foo
()
const
{}