blob: 35feaea24245c62337d72aee80bb7405181953fb [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail10630.d(12): Error: cannot have `out` parameter of type `S` because the default construction is disabled
---
*/
struct S
{
@disable this();
}
void foo(out S) {}