Exception core dump
Colin JN Breame <[email protected]> Fri, 4 Feb 2005 19:38:42 +0000
| Newsgroups | gmane.comp.gnu.dotgnu.developer |
|---|---|
| Message-ID | <[email protected]> |
cscc and ilrun built from CVS head.
The following causes ilrun to core dump:
public class test {
public static void Main() {
try {
e();
} catch {
e();
}
}
static void e() {
null.ToString();
}
}
-- Colin JN Breame