Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / gtest-369.cs
1 namespace Db4objects.Db4o
2 {
3
4         public interface IObjectContainer
5         {
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);
8         }
9 }
10
11 namespace Db4objects.Db4o.Internal
12 {
13         public abstract class ObjectContainerBase
14         {
15                 public System.Collections.IList Query ()
16                 {
17                         return null;
18                 }
19
20                 public System.Collections.Generic.IList<Extent> Query<Extent>(System.Collections.Generic.IList<Extent> foo, System.Collections.Generic.IList<Extent> bar)
21                 {
22                         return null;
23                 }
24         }
25
26         public abstract class ExternalObjectContainer : ObjectContainerBase, IObjectContainer
27         {
28         }
29                 
30                 class M
31                 {
32                         public static void Main ()
33                         {
34                         }
35                 }
36 }