[Mono-bugs] [Bug 71040][Nor] Changed - Warning CS1580 for cref containing nested type argument
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 6 Jan 2005 11:41:29 -0500 (EST)
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 atsushi@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=71040
--- shadow/71040 2005-01-06 04:12:29.000000000 -0500
+++ shadow/71040.tmp.18042 2005-01-06 11:41:29.000000000 -0500
@@ -1,23 +1,23 @@
Bug#: 71040
Product: Mono: Compilers
Version: 1.1
-OS:
+OS: unknown
OS Details: Windows XP RC2
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Normal
Component: C#
AssignedTo: atsushi@ximian.com
ReportedBy: gert.driesen@pandora.be
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
Cc:
-Summary: Warning CS1580 for cref containing enum argument
+Summary: Warning CS1580 for cref containing nested type argument
When compiling the following class :
using System;
/// <summary>
@@ -33,6 +33,26 @@
test.cs(6) warning CS1580: Invalid type for parameter '1' in XML comment
cref at
tribute 'Environment.GetFolderPath(Environment.SpecialFolder)'
Compilation succeeded - 1 warning(s)
This works fine using csc.
+
+------- Additional Comments From atsushi@ximian.com 2005-01-06 11:41 -------
+It looks like we have a bug around nested types, not enum type. Here
+ReadXml() does not fail.
+
+using System;
+using System.Data;
+using System.Xml;
+
+/// <summary>
+/// <see cref="DataSet.ReadXml(XmlReader,XmlReadMode)" />
+/// </summary>
+public class Test {
+ /// <summary>
+ /// <see cref="Environment.SpecialFolder" />
+ /// </summary>
+ public static void Main() {
+ }
+}
+