summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0201.cs
blob: b62f45ea7b1036ad9f9bcdeaaa30ff3980a7d1c9 (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: 11

using System;

public class X
{
	public static void Main ()
	{
		2 * 3;
	}
}