Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0516.cs
index 1baac839adc7013cb12b551ad86c8ff34661bcca..5c41f8dc4e7a3233722dc1eb56fcf70ccf64f879 100644 (file)
@@ -1,9 +1,9 @@
-// cs0516.cs: Constructor `Sample.Sample()' cannot call itself
-// Line: 5
+// CS0516: Constructor `Sample.Sample()' cannot call itself
+// Line: 6
 
 class Sample {
-        public Sample (): this () {}
+       public Sample ()
+               : this ()
+       {
+       }
 }
-
-
-