[mcs] C#7 throw expression
[mono.git] / mcs / errors / cs0165-30.cs
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 9
3
4 using System;
5
6 class Test {
7         
8         static void Main () {
9                 Action a = () => a();
10         }
11 }