Sign in
llvm
/
clang
/
36a094aaa20f6951a530e9bf0250d9afcf8a341b
/
.
/
test
/
SemaCXX
/
designated-initializers-base-class.cpp
blob: 2aa9603e44303c34e76a579393173b6376b70a41 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -std=c++1z -fsyntax-only -verify -Winitializer-overrides
struct
B
{
int
x
;
};
struct
D
:
B
{
int
y
;
};
void
test
()
{
D d
=
{
1
,
.
y
=
2
};
}
// expected-warning {{C99 extension}} expected-note {{}}