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-21.cs')
-rw-r--r--mcs/tests/test-21.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/mcs/tests/test-21.cs b/mcs/tests/test-21.cs
deleted file mode 100644
index cd125497bbb..00000000000
--- a/mcs/tests/test-21.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System;
-
-public class Blah {
-
- public class Foo {
-
- public Foo ()
- {
- Console.WriteLine ("Inside the Foo constructor now");
- }
-
- public int Bar (int i, int j)
- {
- Console.WriteLine ("The Bar method");
- return i+j;
- }
-
-
- }
-
- public static int Main ()
- {
- Foo f = new Foo ();
-
- int j = f.Bar (2, 3);
- Console.WriteLine ("Blah.Foo.Bar returned " + j);
-
- if (j == 5)
- return 0;
- else
- return 1;
-
- }
-
-}