mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
9 lines
126 B
Makefile
9 lines
126 B
Makefile
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice13987.d(9): Error: cannot use array to initialize `S`
|
|
---
|
|
*/
|
|
|
|
struct S {}
|
|
S s = [{}];
|