2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0547-2.cs
index 5756eb98c09e78219a8f425fe394efd750a6ddd2..8484537b2817eb6a658837a199751b5d5221c1c4 100644 (file)
@@ -1,7 +1,7 @@
-// cs0547.cs: 'Property' : property or indexer cannot have void type// Line: 5
-interface Interface {
-        void Property { get; }
-}
-
+// cs0547.cs: 'Value' : property cannot have void type
+// Line: 5
 
+interface PropertyInterface {
+        void Value { get; }
+}