Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-369.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e7d0d394e924a5b5fbbe076d1eb6e8d919a5913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
namespace Db4objects.Db4o
{

        public interface IObjectContainer
        {
                System.Collections.IList Query ();
                System.Collections.Generic.IList<Extent> Query<Extent> (System.Collections.Generic.IList<Extent> foo, System.Collections.Generic.IList<Extent> bar);
        }
}

namespace Db4objects.Db4o.Internal
{
        public abstract class ObjectContainerBase
        {
                public System.Collections.IList Query ()
                {
                        return null;
                }

                public System.Collections.Generic.IList<Extent> Query<Extent>(System.Collections.Generic.IList<Extent> foo, System.Collections.Generic.IList<Extent> bar)
                {
                        return null;
                }
        }

        public abstract class ExternalObjectContainer : ObjectContainerBase, IObjectContainer
        {
        }
		
		class M
		{
			public static void Main ()
			{
			}
		}
}