Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs0547-2.cs
index 5756eb98c09e78219a8f425fe394efd750a6ddd2..7dfa73a694bfd6562956b2d373491fc04f55f4a8 100644 (file)
@@ -1,7 +1,7 @@
-// cs0547.cs: 'Property' : property or indexer cannot have void type// Line: 5
-interface Interface {
-        void Property { get; }
-}
-
+// CS0547: `PropertyInterface.Value': property or indexer cannot have void type
+// Line: 5
 
+interface PropertyInterface {
+        void Value { get; }
+}