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