[Mono-bugs] [Bug 72262][Nor] New - gmcs reports warning CS1570 for valid XML comment

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 6 Feb 2005 11:34:58 -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 gert.driesen@pandora.be.

http://bugzilla.ximian.com/show_bug.cgi?id=72262

--- shadow/72262	2005-02-06 11:34:58.000000000 -0500
+++ shadow/72262.tmp.29948	2005-02-06 11:34:58.000000000 -0500
@@ -0,0 +1,44 @@
+Bug#: 72262
+Product: Mono: Compilers
+Version: 1.1
+OS: Windows XP
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: C#
+AssignedTo: atsushi@ximian.com                            
+ReportedBy: gert.driesen@pandora.be               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: gmcs reports warning CS1570 for valid XML comment
+
+gmcs reports warning CS1570 when compiling the following code snippet 
+(using gmcs /target:library /doc:test.xml test.cs):
+
+/// <summary>
+/// Checks out a CVS module to the required directory.
+/// </summary>
+/// <example>
+///   <cvs-checkout 
+///     whatever="false">
+///   </cvs-checkout>
+/// </example>
+public class Test {
+}
+
+Actual Results:
+
+test.cs(9) warning CS1570: XML comment on 'T:Test' has non-well-formed 
+XML (expected '>' (3E) but found '=' (3D)  Line 1, position 102.).
+
+Expected Results:
+
+successful compilation without warnings
+
+How often does this happen? 
+
+Always, but only using gmcs (SVN HEAD).