[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Parser / namelookup-bug-2.c
blob46f7685f180effcff0f707c1fef60892b03578cf
1 // RUN: %clang_cc1 -verify %s
2 // expected-no-diagnostics
4 typedef int Object;
6 struct Object {int i1; } *P;
8 void foo(void) {
9 struct Object { int i2; } *X;
10 Object:
12 Object a;