blob: f889cb72d373c72d7485af35446e1efefda5c05b [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=12764
/*
TEST_OUTPUT:
---
fail_compilation/fail12764.d(20): Error: field `s` must be initialized in constructor
---
*/
struct S
{
@disable this();
this(string) { }
int f;
}
class C
{
this(int)
{
s.f = 1; // circumvents default ctor!
}
S s;
}