freebsd-dev/test/SemaObjC/interface-scope.m
2010-01-01 10:34:51 +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