1// RUN: %clang_cc1 -verify %s
2
3typedef int Object;
4
5struct Object {int i1; } *P;
6
7void foo() {
8 struct Object { int i2; } *X;
9  Object:
10 {
11    Object a;
12 }
13}
14
15