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), (){});
}