[Mono-bugs] [Bug 45314][Maj] Changed - wrong result of assignment expression
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Mon, 23 Jun 2003 17:36:55 -0400 (EDT)
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=45314
--- shadow/45314 Mon Jun 23 17:20:20 2003
+++ shadow/45314.tmp.21489 Mon Jun 23 17:36:55 2003
@@ -1,14 +1,14 @@
Bug#: 45314
Product: Mono/MCS
Version: unspecified
-OS:
+OS: unknown
OS Details:
-Status: NEW
-Resolution:
-Severity:
+Status: RESOLVED
+Resolution: INVALID
+Severity: Unknown
Priority: Major
Component: Misc
AssignedTo: mono-bugs@ximian.com
ReportedBy: sestoft@dina.kvl.dk
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -54,6 +54,14 @@
private static int Gcd(int m, int n) {
while (m != 0)
m = n % (n = m);
return n;
}
}
+
+------- Additional Comments From bmaurer@users.sf.net 2003-06-23 17:36 -------
+On CVS this has already been fixed:
+
+[benm@Ben gcdtest]$ mono gcd.exe
+Gcd(6, 2) = 2
+Gcd(15, 7) = 1
+