* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0670.cs
1 // cs0670.cs: Fields cannot have void type
2 // Line: 5
3
4 class X {
5         void j;
6
7         static void Main () {}
8 }