https://bugzilla.novell.com/show_bug.cgi?id=633037
https://bugzilla.novell.com/show_bug.cgi?id=633037#c2 --- Comment #2 from Denis Lebedenko <[email protected]> 2010-08-20 01:55:56 UTC --- Here's a smaller example that in a way imitates ASP.NET MVC: 1. Create test.cs with the following code: /* code starts */ class Class1 { public int Method1() { return 1000; } } class Class2<T> { public T t; } class Class3 : Class2<dynamic> { public void Method2() { t.Method1(); } } class Program { public static void Main() { var c3 = new Class3(); c3.t = new Class1(); c3.Method2(); } } /* code ends */ 2. dmcs test.cs 3. exception! -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
