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>2009-09-08 18:12:59 +0400
committerMarek Safar <marek.safar@gmail.com>2009-09-08 18:12:59 +0400
commit161aa266f5d1e368c7fb50e563f616d99d5d623e (patch)
tree2c4bc85f5313a8c04760c74f729c637d5927664b /mcs/errors
parentbd657aa7c651cf9742cd78ffb1130b15bb37e422 (diff)
New test.
svn path=/trunk/mcs/; revision=141521
Diffstat (limited to 'mcs/errors')
-rw-r--r--mcs/errors/cs0102-17.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/errors/cs0102-17.cs b/mcs/errors/cs0102-17.cs
new file mode 100644
index 00000000000..97071314c5c
--- /dev/null
+++ b/mcs/errors/cs0102-17.cs
@@ -0,0 +1,14 @@
+// CS0102: The type `CS0102' already contains a definition for `Clone'
+// Line: 6
+
+class CS0102
+{
+ object Clone ()
+ {
+ return this;
+ }
+
+ public class Clone
+ {
+ }
+}