Add glib to the list of packages with debugging symbols.
[mono.git] / mcs / errors / cs0149.cs
index b65e055a5f8b5e38cfb831ef24a0b9f621b2a511..8ff999d2f9e610861c09d5fe168d1a5111a22aaa 100644 (file)
@@ -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 ();
+       }
 }