blob: c6c08f79b81c496fec3cc620e8fb4343fb524489 [file] [log] [blame]
/*
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();
}