[Mono-bugs] [Bug 616463] SIGSEGV in common_call_trampoline (with test case)
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Fri Jun 25 09:42:20 EDT 2010
http://bugzilla.novell.com/show_bug.cgi?id=616463
http://bugzilla.novell.com/show_bug.cgi?id=616463#c7
--- Comment #7 from Piotr Wysocki <piotr.wysocki at secpl.cs.put.poznan.pl> 2010-06-25 13:42:19 UTC ---
Hope that helps:
I have checked that my attached example:
- compiles and works in MS.NET,
- compiled by mono at Linux works in MS.NET,
- compiles and works in mono 2.4 @ Windows,
- compiles but fails to work in mono 2.6.4 @ Windows.
I have also managed to simplify the example a bit:
class Foo<T> {
public virtual void Go () {
Go2<T> ();
}
protected virtual void Go2<T2> () { }
}
class FooBar<T> : Foo<T> { }
class MainClass {
public static void Main (string[] args) {
new FooBar<object> ().Go ();
System.Console.WriteLine ("Hello World!");
}
}
--
Configure bugmail: http://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