summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1547-8.cs
blob: f85783326ac0ba6ceb3305fe9ec1970d42f18c01 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1547: Keyword `void' cannot be used in this context
// Line: 8

class C
{
	static void Main ()
	{
		bool b = 1 is void;
	}
}