Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

36
mcs/tests/gtest-369.cs Normal file
View File

@@ -0,0 +1,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 ()
{
}
}
}