[Mono-bugs] [Bug 64224][Min] New - We don't report CS0571 (errors/cs0571-2.cs)
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 26 Aug 2004 18:52:16 -0400 (EDT)
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=64224
--- shadow/64224 2004-08-26 18:52:16.000000000 -0400
+++ shadow/64224.tmp.28423 2004-08-26 18:52:16.000000000 -0400
@@ -0,0 +1,27 @@
+Bug#: 64224
+Product: Mono: Compilers
+Version: unspecified
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Minor
+Component: C#
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: martin@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: We don't report CS0571 (errors/cs0571-2.cs)
+
+// cs0571.cs: 'System.Reflection.MemberInfo.Name.get' : cannot explicitly
+call operator or accessor// Line: 9
+using System;
+
+public class EntryPoint {
+ public static void Main () {
+ Type type = typeof(string);
+ Console.WriteLine (type.get_Name());
+ }