Author: marek
Date: 2008-02-05 10:11:28 -0500 (Tue, 05 Feb 2008)
New Revision: 94890
Added:
trunk/mcs/tests/gtest-369.cs
Log:
2008-02-05 Marek Safar <[EMAIL PROTECTED]>
A test for bug #325372
Added: trunk/mcs/tests/gtest-369.cs
===================================================================
--- trunk/mcs/tests/gtest-369.cs 2008-02-05 15:11:11 UTC (rev 94889)
+++ trunk/mcs/tests/gtest-369.cs 2008-02-05 15:11:28 UTC (rev 94890)
@@ -0,0 +1,36 @@
+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
+ {
+ }
+
+ class M
+ {
+ public static void Main ()
+ {
+ }
+ }
+}
Property changes on: trunk/mcs/tests/gtest-369.cs
___________________________________________________________________
Name: svn:eol-style
+ native
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches