minix/external/bsd/llvm/dist/clang/test/SemaCXX/anonymous-union-cxx11.cpp

15 lines
229 B
C++
Raw Normal View History

// 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);
}
}