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:
authorMarek Safar <marek.safar@gmail.com>2004-02-10 11:56:09 +0300
committerMarek Safar <marek.safar@gmail.com>2004-02-10 11:56:09 +0300
commit7f2c0acf6aff9948fec983cc1ac1ae5fa9b80ee4 (patch)
tree50aba6f901a93e7159237015d2aae5416325d175 /mcs/errors/cs0111-5.cs
parent9bd7b7cfc6bd7bddcf2ae25d859b03556e062b55 (diff)
2004-02-10 Marek Safar <marek.safar@seznam.cz>
* cs0111-2.cs: Fixed error message. cs0111-5.cs, cs0528-2.cs: New error tests. svn path=/trunk/mcs/; revision=22938
Diffstat (limited to 'mcs/errors/cs0111-5.cs')
-rw-r--r--mcs/errors/cs0111-5.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mcs/errors/cs0111-5.cs b/mcs/errors/cs0111-5.cs
new file mode 100644
index 00000000000..6d82e7919f0
--- /dev/null
+++ b/mcs/errors/cs0111-5.cs
@@ -0,0 +1,7 @@
+// cs0111.cs: Class 'ISample' already defines a member called 'Blah' with the same parameter types
+// Line: 6
+
+public interface ISample {
+ int Blah ();
+ int Blah ();
+} \ No newline at end of file