1 // cs1594-2.cs: Delegate `Test.Foo' has some invalid arguments
5 delegate void Foo (string x
, params string [] args
);
7 static void Bar (string x
, params string [] args
) {}
9 Foo bar
= new Foo (Bar
);
10 bar ("x' = ", new object [] {"Foo", 5, 3.6 }
);