12 lines · cpp
1// RUN: %clang_cc1 %s -std=c++1z -fsyntax-only -verify -Winitializer-overrides2 3struct B {4 int x;5};6 7struct D : B {8 int y;9};10 11void test() { D d = {1, .y = 2}; } // expected-warning {{C99 extension}} expected-note {{}}12 1// RUN: %clang_cc1 %s -std=c++1z -fsyntax-only -verify -Winitializer-overrides2 3struct B {4 int x;5};6 7struct D : B {8 int y;9};10 11void test() { D d = {1, .y = 2}; } // expected-warning {{C99 extension}} expected-note {{}}12