X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0149.cs;h=8ff999d2f9e610861c09d5fe168d1a5111a22aaa;hb=0b7a3fae240f03ceaf5ea03556cd89603b6302ad;hp=f2cd3457a43a2532e620cecab305b18b7742c39d;hpb=987f8c63e214937c50dcb308149f7558a2cbba41;p=mono.git diff --git a/mcs/errors/cs0149.cs b/mcs/errors/cs0149.cs index f2cd3457a43..8ff999d2f9e 100644 --- a/mcs/errors/cs0149.cs +++ b/mcs/errors/cs0149.cs @@ -1,10 +1,12 @@ -// cs0149.cs: Method name expected +// 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 (); + } }