[Mono-bugs] [Bug 58098][Nor] Changed - Assignment of out params is not tracked correctly
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Fri, 7 May 2004 19:36:12 -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 miguel@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=58098
--- shadow/58098 2004-05-06 22:40:50.000000000 -0400
+++ shadow/58098.tmp.5202 2004-05-07 19:36:12.000000000 -0400
@@ -5,13 +5,13 @@
OS Details:
Status: NEW
Resolution:
Severity: Unknown
Priority: Normal
Component: C#
-AssignedTo: mono-bugs@ximian.com
+AssignedTo: martin@ximian.com
ReportedBy: michi@zeroc.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
Summary: Assignment of out params is not tracked correctly
@@ -147,6 +147,32 @@
simple approaches don't show the error. Maybe the above will help to
track this down. If not, please let me know, and I'll try harder.
Cheers,
Michi.
+
+------- Additional Comments From miguel@ximian.com 2004-05-07 19:36 -------
+Here is a simpler test case:
+
+class X {
+ static void Main ()
+ {
+ int a;
+
+ call (out a);
+ }
+
+ static void call (out int a)
+ {
+ while (true){
+ try {
+ a = 1;
+ return ;
+ } catch {
+ }
+ }
+ }
+}
+
+
+