Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
typedef7.C
blob: 2d39c90b9ee2221af94905c4b025cd43f0237a3a [
file
] [
log
] [
blame
]
// An intermediate version of the fix for c++/19407 broke this example.
struct
A
{
typedef
struct
{
int
i
;
}
S
;
};
template
<
class
T
>
struct
B
:
public
A
{
template
<
class
U
>
static
S f
();
};
template
struct
B
<int>
;