blob: 9f987a9681cddf3a72c9862065f249692e8e65f8 [file] [log] [blame]
Aaron Ballman1dfc4ba2012-06-01 00:02:08 +00001// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -pedantic %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Aaron Ballman1dfc4ba2012-06-01 00:02:08 +00003
4namespace PR12866 {
5 struct bar {
6 union {
7 int member;
8 };
9 };
10
11 void foo( void ) {
12 (void)sizeof(bar::member);
13 }
14}