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-72.cs')
-rwxr-xr-xmcs/tests/test-72.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/mcs/tests/test-72.cs b/mcs/tests/test-72.cs
deleted file mode 100755
index 06d1cee18f9..00000000000
--- a/mcs/tests/test-72.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-//
-// Compile test for referencing types on nested types
-//
-
-using System;
-
-public class outer {
- public class inner {
- public void meth(Object o) {
- inner inst = (inner)o;
- }
- }
-
- static int Main ()
- {
- // We only test that this compiles.
-
- return 0;
- }
- }
-