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/cs7003-6.cs')
-rw-r--r--mcs/errors/cs7003-6.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/errors/cs7003-6.cs b/mcs/errors/cs7003-6.cs
new file mode 100644
index 00000000000..7c6fe68d46b
--- /dev/null
+++ b/mcs/errors/cs7003-6.cs
@@ -0,0 +1,10 @@
+// CS7003: Unbound generic name is not valid in this context
+// Line: 8
+
+class C
+{
+ static void Main ()
+ {
+ System.Action<>.Combine ();
+ }
+} \ No newline at end of file