You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
425 B

// RUN: %clang_cc1 -std=c1x -fsyntax-only -verify %s
void foo(void) {
_Generic; // expected-error {{expected '('}}
(void) _Generic(0); // expected-error {{expected ','}}
(void) _Generic(0, void); // expected-error {{expected ':'}}
(void) _Generic(0,
default: 0, // expected-note {{previous default generic association is here}}
default: 0); // expected-error {{duplicate default generic association}}
}