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>2005-01-07 16:57:47 +0300
committerMarek Safar <marek.safar@gmail.com>2005-01-07 16:57:47 +0300
commit8642fa1d00ef007507007475cafb2f79c1c77a88 (patch)
tree95ee1d7ecd8b6d48f5e40f41026f060a7a4cd9f6 /mcs/errors/cs0102-14.cs
parentdd4ac37613a661f190e2187655d1657239609167 (diff)
parenta5d6f1a5247dc69b36bd11ea8d261ec9dee20f62 (diff)
2005-01-07 Marek Safar <marek.safar@seznam.cz>
* cs0102-14.cs: Bug #70942. svn path=/trunk/mcs/; revision=38489
Diffstat (limited to 'mcs/errors/cs0102-14.cs')
-rw-r--r--mcs/errors/cs0102-14.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/mcs/errors/cs0102-14.cs b/mcs/errors/cs0102-14.cs
new file mode 100644
index 00000000000..0b4d2b5e2b0
--- /dev/null
+++ b/mcs/errors/cs0102-14.cs
@@ -0,0 +1,7 @@
+// cs0102.cs: The class 'T' already contains a definition for 'A'
+// Line: 6
+
+class T{
+ public string A { get { return "a"; } }
+ public string A (int a) { return "a"; }
+}