blob: 5d7330e3f7003ca26ac3dd81c2d76e432108c163 [file] [log] [blame]
Francois Pichet8e161ed2010-11-23 06:07:27 +00001// RUN: %clang_cc1 %s -fsyntax-only -Wno-unused-value -Wmicrosoft -verify -fms-extensions
Chandler Carruthb6448942010-10-06 06:50:05 +00002
3
4struct A
5{
6 int a[]; /* expected-warning {{flexible array member 'a' in otherwise empty struct is a Microsoft extension}} */
7};
8
9struct C {
10 int l;
11 union {
12 int c1[]; /* expected-warning {{flexible array member 'c1' in a union is a Microsoft extension}} */
13 char c2[]; /* expected-warning {{flexible array member 'c2' in a union is a Microsoft extension}} */
14 };
15};
16
17
18struct D {
19 int l;
20 int D[];
21};
Francois Pichet842e7a22010-10-18 15:01:13 +000022
23
Francois Pichet8e161ed2010-11-23 06:07:27 +000024
25
26
27
28typedef struct notnested {
29 long bad1;
30 long bad2;
31} NOTNESTED;
32
33
34typedef struct nested1 {
35 long a;
36 struct notnested var1;
37 NOTNESTED var2;
38} NESTED1;
39
40struct nested2 {
41 long b;
42 NESTED1; // expected-warning {{anonymous structs are a Microsoft extension}}
43};
44
45struct test {
46 int c;
47 struct nested2; // expected-warning {{anonymous structs are a Microsoft extension}}
48};
49
50void foo()
51{
52 struct test var;
53 var.a;
54 var.b;
55 var.c;
56 var.bad1; // expected-error {{no member named 'bad1' in 'struct test'}}
57 var.bad2; // expected-error {{no member named 'bad2' in 'struct test'}}
58}
59
Douglas Gregor86f208c2011-02-22 20:32:04 +000060// Enumeration types with a fixed underlying type.
61const int seventeen = 17;
62typedef int Int;
63
64struct X0 {
65 enum E1 : Int { SomeOtherValue } field; // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}}
66 enum E1 : seventeen;
67};
68
Douglas Gregor1756ce42011-02-22 21:42:31 +000069enum : long long { // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}}
Douglas Gregor86f208c2011-02-22 20:32:04 +000070 SomeValue = 0x100000000
71};
Francois Pichet83e09952011-05-11 22:28:19 +000072
73
74void pointer_to_integral_type_conv(char* ptr) {
75 char ch = (char)ptr;
76 short sh = (short)ptr;
77 ch = (char)ptr;
78 sh = (short)ptr;
Nico Weberee625af2012-02-01 00:41:00 +000079}
80
81
82typedef struct {
83 UNKNOWN u; // expected-error {{unknown type name 'UNKNOWN'}}
84} AA;
85
86typedef struct {
87 AA; // expected-warning {{anonymous structs are a Microsoft extension}}
88} BB;
Aaron Ballman47611c82012-02-23 01:19:31 +000089
Fariborz Jahaniand6724362012-04-23 20:30:52 +000090__declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; // expected-note {{'e1' declared here}}
Eli Friedmanc3b23082012-08-08 21:52:41 +000091struct __declspec(deprecated) DS1 { int i; float f; }; // expected-note {{declared here}}
Aaron Ballman47611c82012-02-23 01:19:31 +000092
93#define MY_TEXT "This is also deprecated"
Fariborz Jahaniand6724362012-04-23 20:30:52 +000094__declspec(deprecated(MY_TEXT)) void Dfunc1( void ) {} // expected-note {{'Dfunc1' declared here}}
Aaron Ballman47611c82012-02-23 01:19:31 +000095
Aaron Ballmanfc685ac2012-06-19 22:09:27 +000096struct __declspec(deprecated(123)) DS2 {}; // expected-error {{argument to deprecated attribute was not a string literal}}
97
Aaron Ballman47611c82012-02-23 01:19:31 +000098void test( void ) {
99 e1 = one; // expected-warning {{'e1' is deprecated: This is deprecated}}
100 struct DS1 s = { 0 }; // expected-warning {{'DS1' is deprecated}}
101 Dfunc1(); // expected-warning {{'Dfunc1' is deprecated: This is also deprecated}}
102
103 enum DE1 no; // no warning because E1 is not deprecated
104}