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/bug8.cs')
-rwxr-xr-xmcs/errors/bug8.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/mcs/errors/bug8.cs b/mcs/errors/bug8.cs
deleted file mode 100755
index 47846f7c4c9..00000000000
--- a/mcs/errors/bug8.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-
-//
-// The problem here is that `(Type)' is being recognized as a Property
-// but inside a Cast expression this is invalid.
-//
-class X {
-
- int Type {
- get {
- return 1;
- }
- }
-
- static void Main ()
- {
- Type t = (Type) null;
- }
-
-}