summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0201-4.cs
blob: 6c3db68994078a702ce9096984cd391eb058e74d (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: 8

class MainClass
{
	public static void Main ()
	{
		for (int i = 0; i++; i < 8) {
		}
	}
}