generic-selection.c 1.5 KB

1234567891011121314151617181920212223242526
  1. // RUN: %clang_cc1 -std=c1x -fsyntax-only -verify %s
  2. void foo(int n) {
  3. (void) _Generic(0,
  4. struct A: 0, // expected-error {{type 'struct A' in generic association incomplete}}
  5. void(): 0, // expected-error {{type 'void ()' in generic association not an object type}}
  6. int[n]: 0); // expected-error {{type 'int [n]' in generic association is a variably modified type}}
  7. (void) _Generic(0,
  8. void (*)(): 0, // expected-note {{compatible type 'void (*)()' specified here}}
  9. void (*)(void): 0); // expected-error {{type 'void (*)(void)' in generic association compatible with previously specified type 'void (*)()'}}
  10. (void) _Generic((void (*)()) 0, // expected-error {{controlling expression type 'void (*)()' compatible with 2 generic association types}}
  11. void (*)(int): 0, // expected-note {{compatible type 'void (*)(int)' specified here}}
  12. void (*)(void): 0); // expected-note {{compatible type 'void (*)(void)' specified here}}
  13. (void) _Generic(0, // expected-error {{controlling expression type 'int' not compatible with any generic association type}}
  14. char: 0, short: 0, long: 0);
  15. int a1[_Generic(0, int: 1, short: 2, float: 3, default: 4) == 1 ? 1 : -1];
  16. int a2[_Generic(0, default: 1, short: 2, float: 3, int: 4) == 4 ? 1 : -1];
  17. int a3[_Generic(0L, int: 1, short: 2, float: 3, default: 4) == 4 ? 1 : -1];
  18. int a4[_Generic(0L, default: 1, short: 2, float: 3, int: 4) == 1 ? 1 : -1];
  19. int a5[_Generic(0, int: 1, short: 2, float: 3) == 1 ? 1 : -1];
  20. int a6[_Generic(0, short: 1, float: 2, int: 3) == 3 ? 1 : -1];
  21. }