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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2008-02-05 22:50:41 +0300
committerJb Evain <jbevain@gmail.com>2008-02-05 22:50:41 +0300
commit15f5a0d82727e9d4c0c327cee437fad8bacf91a4 (patch)
treebca052aeec1a90676373ba32676445dbbdbbe4f8 /mcs/tests/gtest-369.cs
parentc2dbbea09eb4eb3b24e20ef57acee04c8f04bfe5 (diff)
update test
svn path=/trunk/mcs/; revision=94934
Diffstat (limited to 'mcs/tests/gtest-369.cs')
-rw-r--r--mcs/tests/gtest-369.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/tests/gtest-369.cs b/mcs/tests/gtest-369.cs
index 5c776df8204..1e7d0d394e9 100644
--- a/mcs/tests/gtest-369.cs
+++ b/mcs/tests/gtest-369.cs
@@ -4,7 +4,7 @@ namespace Db4objects.Db4o
public interface IObjectContainer
{
System.Collections.IList Query ();
- System.Collections.Generic.IList<Extent> Query<Extent> ();
+ System.Collections.Generic.IList<Extent> Query<Extent> (System.Collections.Generic.IList<Extent> foo, System.Collections.Generic.IList<Extent> bar);
}
}
@@ -17,7 +17,7 @@ namespace Db4objects.Db4o.Internal
return null;
}
- public System.Collections.Generic.IList<Extent> Query<Extent>()
+ public System.Collections.Generic.IList<Extent> Query<Extent>(System.Collections.Generic.IList<Extent> foo, System.Collections.Generic.IList<Extent> bar)
{
return null;
}