mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
177 B
D
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;
|
|
}
|