freebsd-dev/test/SemaObjC/interface-scope.m
2009-12-15 18:49:47 +00:00

13 lines
165 B
Objective-C

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