mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
250 B
D
12 lines
250 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test17307.d(9): Error: anonymous struct can only be a part of an aggregate, not module `test17307`
|
|
---
|
|
* https://issues.dlang.org/show_bug.cgi?id=17307
|
|
*/
|
|
|
|
struct { enum bitsPerWord = size_t; }
|
|
|
|
void main()
|
|
{ }
|