1 2 3 4 5 6 7 8 9 10 11 12 13
// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -pedantic %s namespace PR12866 { struct bar { union { int member; }; }; void foo( void ) { (void)sizeof(bar::member); } }