[nem-bug] [Nemerle 0001035]: ICE: Assertion failed in Typer4: invalid thing called

feedback at nemerle.org feedback at nemerle.org
Fri Oct 26 00:09:47 CEST 2007


The following issue has been ASSIGNED.
======================================================================
<http://nemerle.org/bugs/view.php?id=1035> 
======================================================================
Reported By:                Evin Robertson
Assigned To:                divan
======================================================================
Project:                    Nemerle
Issue ID:                   1035
Category:                   Compiler
Reproducibility:            always
Severity:                   minor
Priority:                   normal
Status:                     assigned
======================================================================
Date Submitted:             07-06-2007 18:18 CEST
Last Modified:              10-26-2007 00:09 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                                    
10-25-07 22:09 divan          Issue Monitored: divan                       
10-26-07 00:09 divan          Status                   new => assigned     
10-26-07 00:09 divan          Assigned To               => divan           
======================================================================




More information about the bugs mailing list