Bugzilla – Bug 325372
[GMCS] gmcs fails to find implementations of generic methods defined in interfaces
Last modified: 2008-02-06 08:43:03 UTC
---- Reported by mono@evain.net 2007-09-05 10:10:34 MST ---- Repro: namespace Db4objects.Db4o { public interface IObjectContainer { System.Collections.IList Query (); System.Collections.Generic.IList<Extent> Query<Extent> (); } } namespace Db4objects.Db4o.Internal { public abstract class ObjectContainerBase { public System.Collections.IList Query () { return null; } public System.Collections.Generic.IList<Extent> Query<Extent> () { return null; } } public abstract class ExternalObjectContainer : ObjectContainerBase, IObjectContainer { } } Steps to reproduce the problem: 1. 2. 3. Actual Results: Compile error: ExternalObjectContainer doesn't implement Query<Extent> Expected Results:
Fixed in SVN.
*** Bug 327197 has been marked as a duplicate of this bug. ***