Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail10630.d
blob: 738bdd14e3499720bd638c0da665047524997df8 [
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
)
{}