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

16 lines
247 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail250.d(10): Error: constructor `fail250.A.this` default constructor for structs only allowed with `@disable`, no body, and no parameters
---
*/
struct A
{
this() {}
}
void main()
{
auto a = A();
}