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:
authorMarek Safar <marek.safar@gmail.com>2008-01-18 15:18:03 +0300
committerMarek Safar <marek.safar@gmail.com>2008-01-18 15:18:03 +0300
commitdf2d776bd7ed14494f64ca02eca3bccdf6fa4c8c (patch)
tree2ab9dfc5b8367065355b835a87ef5f02214ffe95 /mcs/tests/gtest-362.cs
parent1ca385f9e1025a377d76f71293fdf6bb07c130b6 (diff)
New tests.
svn path=/trunk/mcs/; revision=93246
Diffstat (limited to 'mcs/tests/gtest-362.cs')
-rw-r--r--mcs/tests/gtest-362.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mcs/tests/gtest-362.cs b/mcs/tests/gtest-362.cs
new file mode 100644
index 00000000000..63ea5148fc3
--- /dev/null
+++ b/mcs/tests/gtest-362.cs
@@ -0,0 +1,18 @@
+class C
+{
+ static void Assert<T> (T a)
+ {
+ }
+
+ static void Assert<T> (T a, T b)
+ {
+ }
+
+ public static int Main ()
+ {
+ Assert (new object [,] { { 1, 2 }, { "x", "z" } });
+ Assert (new object (), "a");
+
+ return 0;
+ }
+}