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/cs0619-48.cs')
-rw-r--r--mcs/errors/cs0619-48.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/mcs/errors/cs0619-48.cs b/mcs/errors/cs0619-48.cs
deleted file mode 100644
index 3c0f15168bb..00000000000
--- a/mcs/errors/cs0619-48.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-// cs0619-48.cs: `A.Prop' is obsolete: `!!!'
-// Line: 13
-
-class A: System.Attribute
-{
- [System.Obsolete("!!!", true)]
- public string Prop {
- set { }
- get { return ""; }
- }
-}
-
-[A(Prop="System.String.Empty")]
-class Obsolete {
-}