Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail299.d
blob: 1bfdd82a4a275fa00be0f17dce943397cc9047f5 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail299.d(14): Error: more initializers than fields (0) of Foo
---
*/
struct
Foo
{}
void
foo
(
Foo
b
,
void
delegate
())
{}
void
main
()
{
foo
(
Foo
(
1
),
(){});
}