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

class C {
	static void Main () {
		int i = sizeof (void);
	}
}