mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 05:55:43 -04:00

As an extension, generic selection support has been added for all supported languages. The syntax is the same as for C1X. llvm-svn: 129554
11 lines
425 B
C
11 lines
425 B
C
// 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}}
|
|
}
|