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/tests/test-58.cs')
-rwxr-xr-xmcs/tests/test-58.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/mcs/tests/test-58.cs b/mcs/tests/test-58.cs
deleted file mode 100755
index d7230ee45df..00000000000
--- a/mcs/tests/test-58.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using System;
-using System.Reflection;
-
-public class Blah {
-
- public static int Main ()
- {
- unsafe {
- int* i;
- int foo = 10;
-
- void* bar;
-
- i = &foo;
-
- bar = i;
-
- Console.WriteLine ("Address : {0}", (int) i);
- }
-
- return 0;
- }
-}
-
-