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/bug11.cs')
-rwxr-xr-xmcs/errors/bug11.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/mcs/errors/bug11.cs b/mcs/errors/bug11.cs
deleted file mode 100755
index b48bc1893f7..00000000000
--- a/mcs/errors/bug11.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//
-// fixed
-//
-class Location {
- static public int Null {
- get {
- return 1;
- }
- }
-}
-
-class X {
- Location Location;
- X ()
- {
- int a = Location.Null;
- }
-
- static void Main () {}
-}
-
-
-