[Mono-bugs] [Bug 658645] * Assertion: should not be reached at debugger-agent.c:4475

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Thu Dec 9 20:23:08 EST 2010


https://bugzilla.novell.com/show_bug.cgi?id=658645

https://bugzilla.novell.com/show_bug.cgi?id=658645#c2


--- Comment #2 from Zoltan Varga <vargaz at gmail.com> 2010-12-10 01:23:07 UTC ---
I can reproduce it, it is actually a stack walk problem, a testcase:

using System;

class C<T>
{
    public void Foo () {
        throw new Exception ();
    }
}

class D : C<string>
{
}

public class Tests
{
    public static void Main (String[] args) {
        new D ().Foo ();
    }
}

This should print C[System.String], but it prints C[T].

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list