[Mono-bugs] [Bug 69193][Wis] Changed - System.Text.RegularExpressions.Syntax.Parser:ParseRepetitionBounds -- ArgumentException - Illegal {x,y}

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 9 Nov 2004 18:27:23 -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 bmaurer@users.sf.net.

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

--- shadow/69193	2004-11-07 00:32:25.000000000 -0500
+++ shadow/69193.tmp.2259	2004-11-09 18:27:23.000000000 -0500
@@ -1,14 +1,14 @@
 Bug#: 69193
 Product: Mono: Class Libraries
 Version: 1.0
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Wishlist
 Component: System
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: eric@extremeboredom.net               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -48,6 +48,20 @@
 System.Text.RegularExpressions.Syntax.Parser:ParseRegularExpression
 (string,System.Text.RegularExpressions.RegexOptions)
 in <0x00094> System.Text.RegularExpressions.Regex:.ctor
 (string,System.Text.RegularExpressions.RegexOptions)
 in <0x00012> System.Text.RegularExpressions.Regex:.ctor (string)
 in <0x0002c> RegexTest:Main ()
+
+------- Additional Comments From bmaurer@users.sf.net  2004-11-09 18:27 -------
+Even simpler string
+
+using System;
+using System.Text.RegularExpressions;
+
+class RegexTest {
+        static void Main () {
+                Regex m_VarRegex = new Regex(@"\${a*b}");
+        }
+}
+
+WTF does that regex do?