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:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2001-11-02 09:23:37 +0300
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2001-11-02 09:23:37 +0300
commit9a7fb5988660aef9b3968400029796d97c300cb7 (patch)
tree596ee7a96d1ce20bd64c27dcf1b7996437f7ca26 /mcs/errors/cs0111.cs
parentf4837fac50ba8f5ab56cff5714d809c37d73a2b9 (diff)
Stunts to rename cs111.cs to cs0111.cs ;-)
svn path=/trunk/mcs/; revision=1242
Diffstat (limited to 'mcs/errors/cs0111.cs')
-rw-r--r--mcs/errors/cs0111.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/mcs/errors/cs0111.cs b/mcs/errors/cs0111.cs
new file mode 100644
index 00000000000..5af21e7818c
--- /dev/null
+++ b/mcs/errors/cs0111.cs
@@ -0,0 +1,21 @@
+// cs111.cs : Class `Blah' already contains a definition with the same return value and parameter types for method `Foo'
+// Line : 10
+
+public class Blah {
+
+ public void Foo (int i, int j)
+ {
+ }
+
+ public void Foo (int i, int j)
+ {
+ }
+
+ public static void Main ()
+ {
+ int i = 1;
+ int j = 2;
+
+ Foo (i, j);
+ }
+}