1// PR c++/55877
2// { dg-final { scan-assembler-not "\\.local" } }
3
4typedef struct {
5  typedef enum { X, Y } A;
6  typedef struct { } B;
7  struct C { };
8} D;
9
10D d;
11D::A a;
12D::B b;
13D::C c;
14