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:
authorBen Maurer <benm@mono-cvs.ximian.com>2004-03-09 06:35:38 +0300
committerBen Maurer <benm@mono-cvs.ximian.com>2004-03-09 06:35:38 +0300
commita50335c7110eb1b29d1e5f06c08bd975e6051369 (patch)
tree6ba9153ef0f17275006f2d3d3176744a072c70af /mcs/errors/cs0111-6.cs
parent8640466e55568a360cb087c700e33d3b81febfb1 (diff)
new tests
svn path=/trunk/mcs/; revision=23822
Diffstat (limited to 'mcs/errors/cs0111-6.cs')
-rw-r--r--mcs/errors/cs0111-6.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/errors/cs0111-6.cs b/mcs/errors/cs0111-6.cs
new file mode 100644
index 00000000000..bf3a3912d4c
--- /dev/null
+++ b/mcs/errors/cs0111-6.cs
@@ -0,0 +1,11 @@
+// cs111-6.cs : Class `T' already contains a definition with the same return value and parameter types for method `Foo'
+// Line : 6
+
+class T {
+ T () {}
+ T () {}
+
+ public static void Main ()
+ {
+ }
+}