[Mono-bugs] [Bug 58098][Nor] Changed - Assignment of out params is not tracked correctly
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 6 May 2004 00:14:35 -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=58098
--- shadow/58098 2004-05-05 21:44:38.000000000 -0400
+++ shadow/58098.tmp.1830 2004-05-06 00:14:35.000000000 -0400
@@ -2,13 +2,13 @@
Product: Mono: Compilers
Version: unspecified
OS: All
OS Details:
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Normal
Component: C#
AssignedTo: mono-bugs@ximian.com
ReportedBy: michi@zeroc.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -44,6 +44,15 @@
That's not correct -- in foo, I is set by passing it to bar. The same code
compiles without error with MS Visual C#.
Cheers,
Michi.
+
+------- Additional Comments From bmaurer@users.sf.net 2004-05-06 00:14 -------
+I am pretty sure that the line
+return _y.bar(i);
+
+needs to read
+return _y.bar(out i);
+
+but why does csc compile?