YouCompleteMe/cpp/llvm/tools/clang/test/Sema/anonymous-struct-union-c11.c
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

20 lines
421 B
C

// Check for warnings in non-C11 mode:
// RUN: %clang_cc1 -fsyntax-only -verify -Wc11-extensions %s
// Expect no warnings in C11 mode:
// RUN: %clang_cc1 -fsyntax-only -pedantic -Werror -std=c11 %s
struct s {
int a;
struct { // expected-warning{{anonymous structs are a C11 extension}}
int b;
};
};
struct t {
int a;
union { // expected-warning{{anonymous unions are a C11 extension}}
int b;
};
};