summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0165-30.cs
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/errors/cs0165-30.cs')
-rw-r--r--mcs/errors/cs0165-30.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/errors/cs0165-30.cs b/mcs/errors/cs0165-30.cs
new file mode 100644
index 0000000000..c800affb13
--- /dev/null
+++ b/mcs/errors/cs0165-30.cs
@@ -0,0 +1,11 @@
+// CS0165: Use of unassigned local variable `a'
+// Line: 9
+
+using System;
+
+class Test {
+
+ static void Main () {
+ Action a = () => a();
+ }
+} \ No newline at end of file