summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0670.cs
blob: c2aabef87caaeacd4e7e4beeab8616a96ef3828a (plain)
1
2
3
4
5
6
7
8
// CS0670: Fields cannot have void type
// Line: 5

class X {
	void j;

	static void Main () {}
}