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:
-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
+ {
+ }
+}