summaryrefslogtreecommitdiff
path: root/test/Sema/anonymous-struct-union-c11.c
blob: 712e29e5496a37cd6533f3d82543066c8cf34ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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;
  };
};