// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify -Winitializer-overrides %s template struct Foo { struct SubFoo { int bar1; int bar2; }; static void Test() { SubFoo sf = {.bar1 = 10, .bar2 = 20}; } // Expected no warning }; void foo() { Foo::Test(); Foo::Test(); Foo::Test(); } template struct Bar { struct SubFoo { int bar1; int bar2; }; static void Test() { SubFoo sf = {.bar1 = 10, // expected-note 2 {{previous initialization is here}} .bar1 = 20}; } // expected-warning 2 {{initializer overrides prior initialization of this subobject}} }; void bar() { Bar::Test(); // expected-note {{in instantiation of member function 'Bar::Test' requested here}} Bar::Test(); // expected-note {{in instantiation of member function 'Bar::Test' requested here}} }