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

10 lines
177 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail8691.d(7): Error: struct `fail8691.Foo` cannot have field `f` with static array of same struct type
---
*/
struct Foo
{
Foo[1] f;
}