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-98.cs')
-rwxr-xr-xmcs/tests/test-98.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/mcs/tests/test-98.cs b/mcs/tests/test-98.cs
deleted file mode 100755
index 17842abe407..00000000000
--- a/mcs/tests/test-98.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-class X {
- int a;
- Y x;
-
- void b ()
- {
- if (x.a == 1)
- return;
- }
-}
-
-class Y : X {
-
- public static int Main ()
- {
- return 0;
- }
-}