Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
dependent-name12.C
blob: 7ee94e7457d91593eb324a7af33ffcf46cb3921e [
file
] [
log
] [
blame
]
// PR c++/94057 - template keyword in a typename-specifier.
template
<bool>
struct
A
;
template
<
typename
,
typename
>
struct
B
;
template
<
typename
T
,
typename
U
,
typename
V
>
struct
B
<
T U
::*,
V
>
{
typename
A
<
V
::
x
>::
type
::
type t
;
};