mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
245 B
Makefile
15 lines
245 B
Makefile
/**
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/named_arguments_struct_literal.d(14): Error: trying to initialize past the last field `z` of `S`
|
|
---
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=24281
|
|
|
|
struct S { int y, z = 3; }
|
|
|
|
S s = S(
|
|
z: 2,
|
|
3,
|
|
);
|