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/bug18.cs')
-rwxr-xr-xmcs/errors/bug18.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/mcs/errors/bug18.cs b/mcs/errors/bug18.cs
deleted file mode 100755
index 61e0f0af006..00000000000
--- a/mcs/errors/bug18.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-namespace A {
- interface B {
- }
-}
-
-class X {
- static void A (object A)
- {
- object x = (A.B) A;
- }
-
- static void Main ()
- {
- }
-}
-