Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs0670.cs
1 // CS0670: Fields cannot have void type
2 // Line: 5
3
4 class X {
5         void j;
6
7         static void Main () {}
8 }