summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0201-7.cs
blob: 1cefa3e7ec1267a520577aa490e8df663aae3c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
// Line: 10

using System.Linq;

class C
{
	public static void Main ()
	{
		from s in "string" select s;
	}
}