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