Merge pull request #5010 from Unity-Technologies/boehm-gc-alloc-fixed-sre
[mono.git] / mcs / errors / cs0525.cs
index 8a915987c2b16cac31514ff8c727a35beed2ed97..9e225c6dedb7bf79ee359760ca248b1dfb97d49c 100644 (file)
@@ -1,5 +1,7 @@
-// cs0525.cs: Interfaces cannot contain fields
-// Line: 5
-interface Interface { 
+// CS0525: Interfaces cannot contain fields or constants
+// Line: 6
+
+interface Interface
+{ 
        bool value = false;
-}
\ No newline at end of file
+}