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

using System.Linq;

class C
{
	public static void Main ()
	{
		var e = from a in "abcd"
			join b in "defg" on "a" equals a
			select a;
	}
}