mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 08:56:06 +00:00

This is long-since overdue, and matches GCC 5.0. This should also be backwards-compatible, because we already supported all of C11 as an extension in C99 mode. llvm-svn: 220244
20 lines
430 B
C
20 lines
430 B
C
// Check for warnings in non-C11 mode:
|
|
// RUN: %clang_cc1 -fsyntax-only -std=c99 -verify -Wc11-extensions %s
|
|
|
|
// Expect no warnings in C11 mode:
|
|
// RUN: %clang_cc1 -fsyntax-only -std=c11 -pedantic -Werror %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;
|
|
};
|
|
};
|