Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
using35.C
blob: e7e82741d643b8f6206676423eada93db1f304e1 [
file
] [
log
] [
blame
]
// { dg-do compile }
struct
A
{
typedef
int
type
;
};
struct
B
{
typedef
int
type
;
};
struct
C
:
B
{
using
B
::
type
;
};
struct
D
:
A
,
C
{
using
C
::
type
;
void
f
()
{
type t
=
0
;}
};