dmd/compiler/test/fail_compilation/ice13987.d
2022-07-09 18:53:07 +02:00

9 lines
126 B
Makefile

/*
TEST_OUTPUT:
---
fail_compilation/ice13987.d(9): Error: cannot use array to initialize `S`
---
*/
struct S {}
S s = [{}];