Bug in Pnet

Russell Stuart <[email protected]> Mon, 30 Oct 2006 13:16:12 +1000
Newsgroups gmane.comp.gnu.dotgnu.developer
Organization Lube Mobile PTY LTD
Message-ID <[email protected]>
This following code causes ilrun to die with a segmentation 
violation on my Linux 2.6.17 i386 machine.  I am trying to
fix it now.  In the mean time, if anybody has an Ah Ha!
moment that can save me some time, please let me know.

  Jabber: russell-jabber-M7Clnf/[email protected]
  MSN:    russell-msn-M7Clnf/[email protected]
  yahoo:  rstuart4133
  ICQ:    159665522
  or email ...


class X {
  public static void Main()
  {
    try {}
    finally {
      try {
	throw new Exception();
      }
      catch (Exception e) {}
    }
  }
}