Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
diag3438b.d
blob: 46a197d2a24958006077e13aaa77882b975f4956 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/diag3438b.d(9): Error: default argument expected for `y`
---
*/
// Make sure the deprecation doesn't interfere w/ the check for default arguments
struct
S
{
this
(
int
x
=
1
,
int
y
)
{
}
}