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

class C {
	const string s = "3";
	public object o = (void)s;
}