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/errors/bug10.cs')
-rw-r--r--mcs/errors/bug10.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/mcs/errors/bug10.cs b/mcs/errors/bug10.cs
deleted file mode 100644
index 5b2ff627ffa..00000000000
--- a/mcs/errors/bug10.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-//
-// fixed
-//
-using System;
-
-public class Blah {
-
- public void Connect ()
- {
- }
-
- public void Button1_Click (int i, int j)
- {
- Console.WriteLine ("Button1 was clicked !");
- Console.WriteLine ("Answer : " + (i+j));
- }
-
- public static int Main ()
- {
- Blah b = new Blah ();
-
- b.Connect ();
-
- b.OnClick ();
-
- Console.WriteLine ("Test passes");
- return 0;
- }
-
-}