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/cs0023-4.cs')
-rw-r--r--mcs/errors/cs0023-4.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/mcs/errors/cs0023-4.cs b/mcs/errors/cs0023-4.cs
deleted file mode 100644
index f1575b44f50..00000000000
--- a/mcs/errors/cs0023-4.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-// cs0023-4.cs: The `.' operator can not be applied to anonymous methods
-// Line: 8
-
-using System;
-class Test {
- public static void Main(string[] argv) {
- Console.WriteLine("Type of anonymous block: {0}",
- (delegate() {}).GetType());
- }
-}