blob: 8e682ebcda3d1db2a8740f52c557b9398b8789e0 [file] [log] [blame]
Aaron Ballman1dfc4ba2012-06-01 00:02:08 +00001// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -pedantic %s
2
3namespace PR12866 {
4 struct bar {
5 union {
6 int member;
7 };
8 };
9
10 void foo( void ) {
11 (void)sizeof(bar::member);
12 }
13}