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-96.cs')
-rwxr-xr-xmcs/tests/test-96.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/mcs/tests/test-96.cs b/mcs/tests/test-96.cs
deleted file mode 100755
index 718a95f1749..00000000000
--- a/mcs/tests/test-96.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-//
-// Compilation test
-//
-// This used to be a bug in the name lookups in delegate declarations
-//
-namespace N1
-{
- public class A
- {
- static int Main ()
- {
- return 0;
- }
- }
-
- //
- // A used to not be resolved
- //
- public delegate void C(object sender, A a);
-}