freebsd-dev/test/SemaObjC/interface-scope.m
2009-06-02 17:58:47 +00:00

13 lines
163 B
Objective-C

// RUN: clang-cc -fsyntax-only -verify %s
@interface I1 {
@private
int x;
struct {
unsigned int x : 3;
unsigned int y : 3;
} flags;
int y;
}
@end