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:
authorMartin Baulig <martin@novell.com>2004-03-29 19:07:11 +0400
committerMartin Baulig <martin@novell.com>2004-03-29 19:07:11 +0400
commit380b7177a940575efb6ca75ed7c17e88337f69f0 (patch)
treea9afed18404115adf4e712de111791353b598128 /mcs/errors/gcs0408-2.cs
parent371ed2b6661e9138177e2305e8b4be8ec5e9ce2b (diff)
New tests ...
svn path=/trunk/mcs/; revision=24707
Diffstat (limited to 'mcs/errors/gcs0408-2.cs')
-rw-r--r--mcs/errors/gcs0408-2.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/errors/gcs0408-2.cs b/mcs/errors/gcs0408-2.cs
new file mode 100644
index 00000000000..56958e827c5
--- /dev/null
+++ b/mcs/errors/gcs0408-2.cs
@@ -0,0 +1,8 @@
+class X<T>
+{
+ void Foo (T[] t)
+ { }
+
+ void Foo (int[] t)
+ { }
+}