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/cs0037-6.cs')
-rw-r--r--mcs/errors/cs0037-6.cs15
1 files changed, 0 insertions, 15 deletions
diff --git a/mcs/errors/cs0037-6.cs b/mcs/errors/cs0037-6.cs
deleted file mode 100644
index 4563ed13adf..00000000000
--- a/mcs/errors/cs0037-6.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-// cs0037.cs: Cannot convert null to `bool' because it is a value type
-// Line: 13
-
-using System;
-
-public sealed class BoundAttribute : System.Attribute
-{
- public bool Dec { set { } get { return false; } }
-}
-
-class C
-{
- [Bound (Dec = null)]
- double d2;
-} \ No newline at end of file