http://bugzilla.novell.com/show_bug.cgi?id=559356
http://bugzilla.novell.com/show_bug.cgi?id=559356#c0 Summary: Implicit generic parameters to nested types are not implicitly set Classification: Mono Product: Mono: Compilers Version: SVN Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: C# AssignedTo: [email protected] ReportedBy: [email protected] QAContact: [email protected] Found By: --- Blocker: --- Description of Problem: Implicit generic parameters of types nested in generic types are not implicitly set when these types are accessed from within their direct parents. Steps to reproduce the problem: Compile abstract class sample { public abstract TValue Value<TKey, TValue>(); class nested<T> : sample { struct holder<TKey, TValue> { public static TValue Val; } public override sealed TValue Value<TKey, TValue>() { return holder<TKey, TValue>.Val; } } } Actual Results: error CS0305: Using the generic type `MainClass.holderJ.actualHolderJ<T>.holder<TKey,TValue>' requires `3' type argument(s) Expected Results: no error How often does this happen? every time -- Configure bugmail: http://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
