[Mono-bugs] [Bug 23541] New - mcs fails to compile sources with long comment lines.

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
17 Apr 2002 00:13:02 -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@cwanet.com.

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

--- shadow/23541	Tue Apr 16 20:13:02 2002
+++ shadow/23541.tmp.30287	Tue Apr 16 20:13:02 2002
@@ -0,0 +1,55 @@
+Bug#: 23541
+Product: Mono/MCS
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: Misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: martin@cwanet.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: mcs fails to compile sources with long comment lines.
+
+Description of Problem:
+mcs fails to compile sources with long comment lines. csc has no problem.
+
+Steps to reproduce the problem:
+1. copy the lines below to test2.cs
+2. try to compile with mcs --target exe test2.cs
+
+Actual Results:
+(process:3348): ** ERROR **: file unicode.c: line 288 (iconv_get_length): 
+should not be reached
+aborting...
+
+Expected Results:
+A clean compile.
+
+How often does this happen? 
+Always
+
+Additional Information:
+CVS snapshot of 2002-04-12, running on Windows
+
+
+using System;
+namespace test2
+{
+	class test2
+	{
+		/// <param name="NumDigitsAfterDecimal">Optional. Numeric 
+value indicating how many places are displayed to the right of the 
+decimal. Default value is –1, which indicates that the computer's regional 
+settings are used.</param>
+		static int Main(string[] args)
+		{
+			return 0;
+		}
+	}
+}