summaryrefslogtreecommitdiff
path: root/test/SemaCXX/anonymous-union-cxx11.cpp
blob: b0dd1a874deb1faee4dbf1cfc3a441d7a5311d71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -pedantic %s
// expected-no-diagnostics

namespace PR12866 {
  struct bar {
    union {
      int member;
    };
  };

  void foo( void ) {
    (void)sizeof(bar::member);
  }
}

namespace PR20021 {
class C {
  union {
    static_assert(true, "");
    int i;
  };
};
}