blob: 7b995e3d0cb89b16bcc610887aad315d99dd28cb [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00002
Abramo Bagnara8c4bfe52010-10-07 21:20:44 +00003union u { int i; unsigned : 3; };
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00004void f(union u);
5
6void test(int x) {
Eli Friedman80a8eb72012-11-02 01:40:23 +00007 f((union u)x); // expected-warning {{cast to union type is a GNU extension}}
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00008 f((union u)&x); // expected-error {{cast to union type from type 'int *' not present in union}}
Abramo Bagnara8c4bfe52010-10-07 21:20:44 +00009 f((union u)2U); // expected-error {{cast to union type from type 'unsigned int' not present in union}}
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +000010}
Nuno Lopes6ed2ef82009-01-15 16:44:45 +000011
Eli Friedman80a8eb72012-11-02 01:40:23 +000012union u w = (union u)2; // expected-warning {{cast to union type is a GNU extension}}
Nuno Lopes6ed2ef82009-01-15 16:44:45 +000013union u ww = (union u)1.0; // expected-error{{cast to union type from type 'double' not present in union}}
Douglas Gregor08a41902010-04-09 17:53:29 +000014union u x = 7; // expected-error{{initializing 'union u' with an expression of incompatible type 'int'}}
Nuno Lopes6ed2ef82009-01-15 16:44:45 +000015int i;
Eli Friedman80a8eb72012-11-02 01:40:23 +000016union u zz = (union u)i; // expected-error{{initializer element is not a compile-time constant}} expected-warning {{cast to union type is a GNU extension}}
Nuno Lopes6ed2ef82009-01-15 16:44:45 +000017
18struct s {int a, b;};
19struct s y = { 1, 5 };
20struct s z = (struct s){ 1, 5 };