https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66900
Jonathan Wakely <redi at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Ever confirmed|0 |1
See Also| |https://gcc.gnu.org/bugzill
| |a/show_bug.cgi?id=26950
Status|UNCONFIRMED |NEW
Last reconfirmed| |2020-08-26
Keywords| |accepts-invalid
--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
>From the attachment:
namespace N {
int j = 1;
}
namespace M {
typedef int N;
void f() {
N::j = 2;
}
}
int main() { M::f(); }