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:52 +0300
committerMartin Baulig <martin@novell.com>2004-03-23 22:00:52 +0300
commitb6cf2c1d21360a0c10cbbaa2fd1dbfe5a26f4e8f (patch)
tree1e6d080d83137ab31b1597e1f44f7142c2f6c41b /mcs/errors/gcs0408.cs
parent406e2d49cb6ce2f60e9d5918481b774ea540eda4 (diff)
New test ...
svn path=/trunk/mcs/; revision=24488
Diffstat (limited to 'mcs/errors/gcs0408.cs')
-rw-r--r--mcs/errors/gcs0408.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/errors/gcs0408.cs b/mcs/errors/gcs0408.cs
new file mode 100644
index 00000000000..98d9869b592
--- /dev/null
+++ b/mcs/errors/gcs0408.cs
@@ -0,0 +1,8 @@
+class X<T>
+{
+ void Foo (T t)
+ { }
+
+ void Foo (int i)
+ { }
+}