[Mono-bugs] [Bug 34471][Min] New - not reporting CS0571: cannot explicitly call operator or accessor
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
22 Nov 2002 14:57:06 -0000
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by martin@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=34471
--- shadow/34471 Fri Nov 22 09:57:06 2002
+++ shadow/34471.tmp.2429 Fri Nov 22 09:57:06 2002
@@ -0,0 +1,28 @@
+Bug#: 34471
+Product: Mono/MCS
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Minor
+Component: Misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: martin@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: not reporting CS0571: cannot explicitly call operator or accessor
+
+The following is not allowed:
+
+class X
+{
+ long Foo { get { return 8; } }
+
+ long Test () {
+ return get_Foo ();
+ }
+}