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

namespace OtherTest
{
	public static class Program
	{
		static void MainD (object p)
		{
			if (p is String)
				(void)((string) p).ToString ();
		}
	}
}