X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftests%2Ftest-351.cs;h=2d2463ee8313c324ee60deca31dd894fd62ccec6;hb=d8be0899640d040272eb77b8749275a41a3d103a;hp=3e7e4d820dc1b9020f626b4a345bcfe5616cbd9a;hpb=1fabd87b02f8d2e359150ed7a9e92613e60383bc;p=mono.git diff --git a/mcs/tests/test-351.cs b/mcs/tests/test-351.cs index 3e7e4d820dc..2d2463ee831 100644 --- a/mcs/tests/test-351.cs +++ b/mcs/tests/test-351.cs @@ -2,7 +2,7 @@ namespace Test { delegate void Foo (string x, params object [] args); class Testee { static void Bar (string x, params object [] args) {} - static void Main () { + public static void Main () { Foo bar = new Foo (Bar); bar ("Hello"); bar ("Hello", "world");