freebsd-dev/test/Parser/namelookup-bug-2.c

15 lines
159 B
C
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -verify %s
2009-06-02 17:58:47 +00:00
typedef int Object;
struct Object {int i1; } *P;
void foo() {
struct Object { int i2; } *X;
Object:
{
Object a;
}
}