2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1594-2.cs
blobdaaca9803205c2ca5039e9f3266b30596c96c4b8
1 // cs1594-2.cs: Delegate `Test.Foo' has some invalid arguments
2 // Line: 10
4 namespace Test {
5 delegate void Foo (string x, params string [] args);
6 class Testee {
7 static void Bar (string x, params string [] args) {}
8 static void Main () {
9 Foo bar = new Foo (Bar);
10 bar ("x' = ", new object [] {"Foo", 5, 3.6 });