Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0524.cs
index c19367335a5135177d1b779b447e764ca5a3ac7c..9c9ff28c5942f441eb34b4cfca9464e1f7a36e82 100644 (file)
@@ -1,10 +1,7 @@
-// cs0524.cs: 'Struct' : interfaces cannot declare types\r
-// Line: 5\r
-\r
-interface Interface {\r
-        public struct Struct {\r
-        }\r
-}\r
-\r
-\r
-\r
+// CS0524: Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations
+// Line: 5
+
+interface Interface {
+        public struct Struct {
+        }
+}