Updated with review feedback.
[mono.git] / mcs / errors / cs0103-11.cs
1 // CS0103: The name `a1' does not exist in the current context
2 // Line: 11
3
4 using System.Linq;
5
6 class C
7 {
8         public static void Main ()
9         {
10                 var e = 
11                         from a1 in "abcd"
12                         select a1;
13                 
14                 a1 = null;
15         }
16 }