forked from OSchip/llvm-project
13 lines
194 B
C++
13 lines
194 B
C++
|
// RUN: %clang_cc1 %s -std=c++1z -fsyntax-only -verify -Winitializer-overrides
|
||
|
// expected-no-diagnostics
|
||
|
|
||
|
struct B {
|
||
|
int x;
|
||
|
};
|
||
|
|
||
|
struct D : B {
|
||
|
int y;
|
||
|
};
|
||
|
|
||
|
void test() { D d = {1, .y = 2}; }
|