Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
diag10099.d
blob: cf1b6459436b3830c84f57a9c355c53e751772de [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/diag10099.d(15): Error: variable `diag10099.main.s` default construction is disabled for type `S`
---
*/
struct
S
{
@disable
this
();
}
void
main
()
{
S s
;
}