Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
using30.C
blob: 3fbe96c3ce8e3c4c3764f7e5023ea5974830ad6b [
file
] [
log
] [
blame
]
// { dg-do compile }
struct
H
{
typedef
int
type
;
};
struct
J
:
H
{
struct
type
{};
// { dg-message "previous" }
using
H
::
type
;
// { dg-error "conflicts" }
};