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-48.cs')
-rw-r--r--mcs/tests/test-48.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/mcs/tests/test-48.cs b/mcs/tests/test-48.cs
deleted file mode 100644
index 21b6857ba6c..00000000000
--- a/mcs/tests/test-48.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-using System;
-
-public class Blah {
-
- public const int i = 5;
-
- public static int Main ()
- {
- const int foo = 10;
-
- int j = Blah.i;
-
- if (j != 5)
- return 1;
-
- if (foo != 10)
- return 1;
-
- for (int i = 0; i < 5; ++i){
- const int bar = 15;
-
- Console.WriteLine (bar);
- Console.WriteLine (foo);
- }
-
- Console.WriteLine ("Constant emission test okay");
-
- return 0;
- }
-}