X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0149.cs;h=8ff999d2f9e610861c09d5fe168d1a5111a22aaa;hb=0b7a3fae240f03ceaf5ea03556cd89603b6302ad;hp=b65e055a5f8b5e38cfb831ef24a0b9f621b2a511;hpb=bd9f9ee7cb81823608edc76ef9d0b6416783fe71;p=mono.git diff --git a/mcs/errors/cs0149.cs b/mcs/errors/cs0149.cs index b65e055a5f8..8ff999d2f9e 100644 --- a/mcs/errors/cs0149.cs +++ b/mcs/errors/cs0149.cs @@ -1,10 +1,12 @@ -// cs0149.cs: Method 'MainClass.Delegate()' does not match delegate 'void TestDelegate()' +// CS0149: Method name expected // Line: 8 delegate void TestDelegate(); -public class MainClass { - public static void Main() { - TestDelegate delegateInstance = new TestDelegate (0); - } +public class MainClass +{ + public static void Main () + { + TestDelegate delegateInstance = new TestDelegate (); + } }