2005-04-27 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / tests / 2test-18.cs
index 87a94a93df50699bf982c799cfe6f4f1b2836ed0..9a865b1e8894b73589797bc005e57bc6fe9b63b9 100644 (file)
@@ -1,11 +1,11 @@
 public class Foo {
        delegate Inner foo_fn(string s);
-       public static void Main(string[] args)
+       public static void Main()
        {
                foo_fn f = delegate (string s) {
                        return new Inner(s + s);
                };
-               f (args[0]);
+               f ("Test");
        }
 
        class Inner