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