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:
Diffstat (limited to 'mcs/errors/cs0111.cs')
-rw-r--r--mcs/errors/cs0111.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/mcs/errors/cs0111.cs b/mcs/errors/cs0111.cs
deleted file mode 100644
index 968e204f64a..00000000000
--- a/mcs/errors/cs0111.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-// cs111.cs : Class `Blah' already contains a definition with the same return value and parameter types for method `Foo'
-// Line : 10
-
-public class Blah {
-
- static public void Foo (int i, int j)
- {
- }
-
- static public void Foo (int i, int j)
- {
- }
-
- public static void Main ()
- {
- int i = 1;
- int j = 2;
-
- Foo (i, j);
- }
-}