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

public class X
{
	public static void Main ()
	{
		return;
		1+1;
	}
}