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-23 22:00:21 +0300
committerMartin Baulig <martin@novell.com>2004-03-23 22:00:21 +0300
commit406e2d49cb6ce2f60e9d5918481b774ea540eda4 (patch)
treecfc1d10767db68a2e4d0333fcc8d7fa41d618338 /mcs/errors/gcs0411.cs
parent626aa8535f676a0d37da15f029a382e3310ca4c3 (diff)
New tests .....
svn path=/trunk/mcs/; revision=24487
Diffstat (limited to 'mcs/errors/gcs0411.cs')
-rw-r--r--mcs/errors/gcs0411.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/errors/gcs0411.cs b/mcs/errors/gcs0411.cs
new file mode 100644
index 00000000000..415b084c3ef
--- /dev/null
+++ b/mcs/errors/gcs0411.cs
@@ -0,0 +1,15 @@
+class Test<A>
+{
+ public void Foo<V> (V v, V w)
+ { }
+}
+
+class X
+{
+ static void Main ()
+ {
+ Test<float> test = new Test<float> ();
+ test.Foo (8, "Hello World");
+ }
+}
+