Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -fsyntax-only -verify -pedantic %s |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2 | |
| 3 | union u { int i; }; |
| 4 | void f(union u); |
| 5 | |
| 6 | void test(int x) { |
| 7 | f((union u)x); // expected-warning {{C99 forbids casts to union type}} |
| 8 | f((union u)&x); // expected-error {{cast to union type from type 'int *' not present in union}} |
| 9 | } |
Nuno Lopes | 6ed2ef8 | 2009-01-15 16:44:45 +0000 | [diff] [blame] | 10 | |
| 11 | union u w = (union u)2; // expected-warning {{C99 forbids casts to union type}} |
| 12 | union u ww = (union u)1.0; // expected-error{{cast to union type from type 'double' not present in union}} |
| 13 | union u x = 7; // expected-error{{incompatible type initializing 'int', expected 'union u'}} |
| 14 | int i; |
| 15 | union u zz = (union u)i; // expected-error{{initializer element is not a compile-time constant}} expected-warning {{C99 forbids casts to union type}} |
| 16 | |
| 17 | struct s {int a, b;}; |
| 18 | struct s y = { 1, 5 }; |
| 19 | struct s z = (struct s){ 1, 5 }; |