[nem-bug] [Nemerle 0001035]: ICE: Assertion failed in Typer4:
invalid thing called
feedback at nemerle.org
feedback at nemerle.org
Fri Jul 6 18:18:11 CEST 2007
The following issue has been SUBMITTED.
======================================================================
<http://nemerle.org/bugs/view.php?id=1035>
======================================================================
Reported By: Evin Robertson
Assigned To:
======================================================================
Project: Nemerle
Issue ID: 1035
Category: Compiler
Reproducibility: always
Severity: minor
Priority: normal
Status: new
======================================================================
Date Submitted: 07-06-2007 18:18 CEST
Last Modified: 07-06-2007 18:18 CEST
======================================================================
Summary: ICE: Assertion failed in Typer4: invalid thing
called
Description:
(same ICE message as was in 782)
The following program gives an ICE:
using System;
public class AException : Exception
{
public F() : void
{
}
}
public class BException : Exception
{
public static F() : void
{
}
}
public class M
{
public S() : void
{
def h(action)
{
try
{
action();
}
catch
{
| ex is AException =>
h(() => ex.F());
| _ is BException =>
h(() => BException.F());
}
}
h(() => BException.F());
}
}
======================================================================
Issue History
Date Modified Username Field Change
======================================================================
07-06-07 18:18 Evin Robertson New Issue
======================================================================
More information about the bugs
mailing list