summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0103-11.cs
blob: 6d201877617596bb9cd5863903774fd3699ed930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS0103: The name `a1' does not exist in the current context
// Line: 11

using System.Linq;

class C
{
	public static void Main ()
	{
		var e = 
			from a1 in "abcd"
			select a1;
		
		a1 = null;
	}
}