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-17 00:45:25 +0300
committerMartin Baulig <martin@novell.com>2004-03-17 00:45:25 +0300
commit1b4e74ea5f37b564590859f15cced2c545765c07 (patch)
tree032028a3cfa23c1f27c6c25ff2cdd4380876f7b6 /mcs/errors/gcs0117.cs
parent47a64096c98492f6f512cf46baf4525e71aa7ba1 (diff)
New generics test.
svn path=/trunk/mcs/; revision=24175
Diffstat (limited to 'mcs/errors/gcs0117.cs')
-rw-r--r--mcs/errors/gcs0117.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/mcs/errors/gcs0117.cs b/mcs/errors/gcs0117.cs
new file mode 100644
index 00000000000..a289ff96f51
--- /dev/null
+++ b/mcs/errors/gcs0117.cs
@@ -0,0 +1,13 @@
+class A<X>
+{
+ public void Test (X x)
+ {
+ x.Test ();
+ }
+}
+
+class X
+{
+ public void Test ()
+ { }
+}