summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0103-10.cs
blob: c73714e1c33e932fe6963ca6808d74e14fab03d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0103: The name `b' 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 b equals "g"
			select a;
	}
}