Fariborz Jahanian | ffc120a | 2014-08-26 21:10:47 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Douglas Gregor | c6f58fe | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 2 | struct X { |
| 3 | union { |
| 4 | float f3; |
| 5 | double d2; |
| 6 | } named; |
| 7 | |
| 8 | union { |
| 9 | int i; |
| 10 | float f; |
| 11 | |
| 12 | union { |
| 13 | float f2; |
| 14 | double d; |
| 15 | }; |
| 16 | }; |
| 17 | |
| 18 | struct { |
| 19 | int a; |
| 20 | float b; |
| 21 | }; |
| 22 | }; |
| 23 | |
| 24 | void test_unqual_references(struct X x, const struct X xc) { |
Richard Trieu | af7d76c | 2015-04-11 01:53:13 +0000 | [diff] [blame] | 25 | // expected-note@-1 3{{variable 'xc' declared const here}} |
Douglas Gregor | c6f58fe | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 26 | x.i = 0; |
| 27 | x.f = 0.0; |
| 28 | x.f2 = x.f; |
| 29 | x.d = x.f; |
| 30 | x.f3 = 0; // expected-error{{no member named 'f3'}} |
| 31 | x.a = 0; |
| 32 | |
Richard Trieu | af7d76c | 2015-04-11 01:53:13 +0000 | [diff] [blame] | 33 | xc.d = 0.0; // expected-error{{cannot assign to variable 'xc' with const-qualified type 'const struct X'}} |
| 34 | xc.f = 0; // expected-error{{cannot assign to variable 'xc' with const-qualified type 'const struct X'}} |
| 35 | xc.a = 0; // expected-error{{cannot assign to variable 'xc' with const-qualified type 'const struct X'}} |
Douglas Gregor | c6f58fe | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | |
| 39 | struct Redecl { |
| 40 | int x; // expected-note{{previous declaration is here}} |
David Majnemer | 8f0ed91 | 2014-08-11 07:29:54 +0000 | [diff] [blame] | 41 | struct y { }; // expected-warning{{declaration does not declare anything}} |
Douglas Gregor | c6f58fe | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 42 | |
| 43 | union { |
| 44 | int x; // expected-error{{member of anonymous union redeclares 'x'}} |
| 45 | float y; |
| 46 | double z; // expected-note{{previous declaration is here}} |
| 47 | double zz; // expected-note{{previous declaration is here}} |
| 48 | }; |
| 49 | |
| 50 | int z; // expected-error{{duplicate member 'z'}} |
Chris Lattner | d13b8b5 | 2009-02-23 22:00:08 +0000 | [diff] [blame] | 51 | void zz(); // expected-error{{duplicate member 'zz'}} |
Douglas Gregor | c6f58fe | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 52 | }; |
| 53 | |
Douglas Gregor | f19ac0e | 2010-04-08 21:33:23 +0000 | [diff] [blame] | 54 | union { // expected-warning{{declaration does not declare anything}} |
Douglas Gregor | c6f58fe | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 55 | int int_val; |
| 56 | float float_val; |
| 57 | }; |
| 58 | |
Douglas Gregor | f19ac0e | 2010-04-08 21:33:23 +0000 | [diff] [blame] | 59 | static union { // expected-warning{{declaration does not declare anything}} |
Douglas Gregor | c6f58fe | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 60 | int int_val2; |
| 61 | float float_val2; |
| 62 | }; |
| 63 | |
| 64 | void f() { |
| 65 | int_val2 = 0; // expected-error{{use of undeclared identifier}} |
| 66 | float_val2 = 0.0; // expected-error{{use of undeclared identifier}} |
| 67 | } |
| 68 | |
| 69 | void g() { |
Douglas Gregor | f19ac0e | 2010-04-08 21:33:23 +0000 | [diff] [blame] | 70 | union { // expected-warning{{declaration does not declare anything}} |
Douglas Gregor | c6f58fe | 2009-01-12 22:49:06 +0000 | [diff] [blame] | 71 | int i; |
| 72 | float f2; |
| 73 | }; |
| 74 | i = 0; // expected-error{{use of undeclared identifier}} |
| 75 | f2 = 0.0; // expected-error{{use of undeclared identifier}} |
| 76 | } |
| 77 | |
| 78 | // <rdar://problem/6483159> |
| 79 | struct s0 { union { int f0; }; }; |
| 80 | |
| 81 | // <rdar://problem/6481130> |
Richard Smith | b1402ae | 2013-03-18 22:52:47 +0000 | [diff] [blame] | 82 | typedef struct { }; // expected-warning{{typedef requires a name}} |
Daniel Dunbar | 8d42281 | 2009-02-27 17:07:01 +0000 | [diff] [blame] | 83 | |
| 84 | // PR3675 |
| 85 | struct s1 { |
| 86 | int f0; // expected-note{{previous declaration is here}} |
| 87 | union { |
| 88 | int f0; // expected-error{{member of anonymous union redeclares 'f0'}} |
| 89 | }; |
| 90 | }; |
Douglas Gregor | 2e7cba6 | 2009-03-06 23:06:59 +0000 | [diff] [blame] | 91 | |
Douglas Gregor | d9f92e2 | 2009-03-06 23:28:18 +0000 | [diff] [blame] | 92 | // PR3680 |
Douglas Gregor | f19ac0e | 2010-04-08 21:33:23 +0000 | [diff] [blame] | 93 | struct {}; // expected-warning{{declaration does not declare anything}} |
Douglas Gregor | d9f92e2 | 2009-03-06 23:28:18 +0000 | [diff] [blame] | 94 | |
| 95 | struct s2 { |
| 96 | union { |
| 97 | int a; |
Carl Norum | 58d489f | 2011-03-07 22:57:45 +0000 | [diff] [blame] | 98 | } // expected-warning{{expected ';' at end of declaration list}} |
Douglas Gregor | d9f92e2 | 2009-03-06 23:28:18 +0000 | [diff] [blame] | 99 | }; // expected-error{{expected member name or ';' after declaration specifiers}} |
John McCall | 02bc54d | 2010-01-13 22:07:44 +0000 | [diff] [blame] | 100 | |
| 101 | // Make sure we don't a.k.a. anonymous structs. |
| 102 | typedef struct { |
| 103 | int x; |
| 104 | } a_struct; |
Douglas Gregor | b10646d | 2010-04-09 17:53:29 +0000 | [diff] [blame] | 105 | int tmp = (a_struct) { .x = 0 }; // expected-error {{initializing 'int' with an expression of incompatible type 'a_struct'}} |
Eli Friedman | a767941 | 2012-02-07 05:00:47 +0000 | [diff] [blame] | 106 | |
| 107 | // This example comes out of the C11 standard; make sure we don't accidentally reject it. |
| 108 | struct s { |
| 109 | struct { int i; }; |
| 110 | int a[]; |
| 111 | }; |
Aaron Ballman | 260995b | 2014-10-15 16:58:18 +0000 | [diff] [blame] | 112 | |
| 113 | // PR20930 |
| 114 | struct s3 { |
| 115 | struct { int A __attribute__((deprecated)); }; // expected-note {{'A' has been explicitly marked deprecated here}} |
| 116 | }; |
| 117 | |
| 118 | void deprecated_anonymous_struct_member(void) { |
| 119 | struct s3 s; |
| 120 | s.A = 1; // expected-warning {{'A' is deprecated}} |
| 121 | } |