blob: 82209121b183623ad6eb21c708c32347615e9e36 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc %s -fsyntax-only -verify
Steve Naroff63359c82009-02-20 17:57:11 +00002
3@interface X
4{
5 int a : -1; // expected-error{{bit-field 'a' has negative width}}
6
7 // rdar://6081627
8 int b : 33; // expected-error{{size of bit-field 'b' exceeds size of its type (32 bits)}}
9
10 int c : (1 + 0.25); // expected-error{{expression is not an integer constant expression}}
11 int d : (int)(1 + 0.25);
12
13 // rdar://6138816
14 int e : 0; // expected-error {{bit-field 'e' has zero width}}
15}
16@end
17
Steve Naroffca331292009-03-03 14:49:36 +000018@interface Base {
19 int i;
20}
21@end
22
Anders Carlsson31fddcc2009-09-14 22:00:20 +000023@interface WithBitFields: Base {
Steve Naroffca331292009-03-03 14:49:36 +000024 void *isa; // expected-note {{previous definition is here}}
25 unsigned a: 5;
26 signed b: 4;
27 int c: 5; // expected-note {{previous definition is here}}
28}
29@end
30
Anders Carlsson31fddcc2009-09-14 22:00:20 +000031@implementation WithBitFields {
Steve Naroffca331292009-03-03 14:49:36 +000032 char *isa; // expected-error {{instance variable 'isa' has conflicting type: 'char *' vs 'void *'}}
33 unsigned a: 5;
34 signed b: 4;
Anders Carlsson31fddcc2009-09-14 22:00:20 +000035 int c: 3; // expected-error {{instance variable 'c' has conflicting bit-field width}}
Steve Naroffca331292009-03-03 14:49:36 +000036}
37@end