[Mono-bugs] [Bug 77032][Wis] New - gmcs error

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sun Dec 18 21:50:24 EST 2005


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 ddulai at bloomberg.net.

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

--- shadow/77032	2005-12-18 21:50:24.000000000 -0500
+++ shadow/77032.tmp.14128	2005-12-18 21:50:24.000000000 -0500
@@ -0,0 +1,37 @@
+Bug#: 77032
+Product: Mono: Compilers
+Version: 1.1
+OS: GNU/Linux [Other]
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: C#
+AssignedTo: rharinath at novell.com                            
+ReportedBy: ddulai at bloomberg.net               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: gmcs error
+
+if (stored_offset >= 0 && stored_len+4 < opt_len >> 3)
+
+giving me:
+
+syntax error, got token `OP_GENERICS_LT'
+foo.cs(795,55): error CS1002: Expecting `;'
+foo.cs(799,4): error CS8025: Parsing error
+
+changing to this fixes:
+
+if (stored_offset >= 0 && (stored_len+4) < (opt_len >> 3)) 
+
+this works on msft's csc from the 2.0 framework
+
+altho i do agree that the first statement is evil and should have parens, 
+consistancy is desired.
+
+% gmcs --version
+Mono C# compiler version 1.1.11.0


More information about the mono-bugs mailing list