[Mono-bugs] [Bug 21529] New - Bug in params/array code.

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
8 Mar 2002 02:46:57 -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 miguel@ximian.com.

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

--- shadow/21529	Thu Mar  7 21:46:57 2002
+++ shadow/21529.tmp.19181	Thu Mar  7 21:46:57 2002
@@ -0,0 +1,28 @@
+Bug#: 21529
+Product: Mono/MCS
+Version: unspecified
+OS: other
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: Misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: miguel@ximian.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Bug in params/array code.
+
+The following code does not compile:
+
+public class X {
+	static void Main ()
+	{
+		string s;
+
+		s.Split ('/');
+	}
+}