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