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/cs9005.cs')
-rw-r--r--mcs/errors/cs9005.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/mcs/errors/cs9005.cs b/mcs/errors/cs9005.cs
deleted file mode 100644
index 85e4c017263..00000000000
--- a/mcs/errors/cs9005.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-// CS9005: Constructor initializer cannot access primary constructor parameters
-// Line: 7
-
-class Test(string s)
-{
- public Test ()
- : this (s)
- {
- }
-} \ No newline at end of file