freebsd-dev/test/Sema/nested-redef.c

24 lines
443 B
C
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
2009-06-02 17:58:47 +00:00
struct X { // expected-note{{previous definition is here}}
2009-12-15 18:49:47 +00:00
struct X { } x; // expected-error{{nested redefinition of 'X'}} \
// expected-error{{field has incomplete type}}
2009-06-02 17:58:47 +00:00
};
struct Y { };
void f(void) {
struct Y { }; // okay: this is a different Y
}
struct T;
struct Z {
struct T { int x; } t;
struct U { int x; } u;
};
void f2(void) {
struct T t;
struct U u;
}