Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail250.d
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
();
}