[Mono-bugs] [Bug 71121][Cri] Changed - ** (mono-heap-prof-view.exe:10084): WARNING **: unknown token type 0
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sun, 9 Jan 2005 15:41:19 -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=71121
--- shadow/71121 2005-01-09 12:02:42.000000000 -0500
+++ shadow/71121.tmp.17712 2005-01-09 15:41:19.000000000 -0500
@@ -29,6 +29,34 @@
------- Additional Comments From bmaurer@users.sf.net 2005-01-09 12:02 -------
BTW, you can repro it with no arguments.
oddly, if i add an extra argument, it gets further along...
+
+------- Additional Comments From bmaurer@users.sf.net 2005-01-09 15:41 -------
+Simple test case;
+
+class A {
+ static A a;
+ static B b;
+ public A (string t) {}
+
+ static void Main (string [] args)
+ {
+ a = new A (args [0]);
+ a.C ();
+ a.D ();
+ b = new B (a);
+
+ X ();
+ }
+
+ void C () {}
+ void D () {}
+
+ static void X () {}
+}
+
+class B {
+ public B (A t) {}
+}