dlr bug
[mcs.git] / tests / gtest-369.cs
blob1e7d0d394e924a5b5fbbe076d1eb6e8d919a5913
1 namespace Db4objects.Db4o
4 public interface IObjectContainer
6 System.Collections.IList Query ();
7 System.Collections.Generic.IList<Extent> Query<Extent> (System.Collections.Generic.IList<Extent> foo, System.Collections.Generic.IList<Extent> bar);
11 namespace Db4objects.Db4o.Internal
13 public abstract class ObjectContainerBase
15 public System.Collections.IList Query ()
17 return null;
20 public System.Collections.Generic.IList<Extent> Query<Extent>(System.Collections.Generic.IList<Extent> foo, System.Collections.Generic.IList<Extent> bar)
22 return null;
26 public abstract class ExternalObjectContainer : ObjectContainerBase, IObjectContainer
30 class M
32 public static void Main ()