Sign in
gnu
/
gcc
/
4aef14b09557ce072f1269bd8a05fa2b1df0eda2
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
typedef4.C
blob: 4ccd24663917dfd9029a22e94dd0cdf772a1cb4d [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Origin: Mark Mitchell <mark@codesourcery.com>
struct
B1
{
typedef
int
X
;
};
struct
B2
{
typedef
int
X
;
};
template
<
class
T
>
struct
D
:
public
B1
,
public
B2
{
typedef
int
X
;
};
template
struct
D
<int>
;