[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs0708.cs
1 // CS0708: `StaticClass.i': cannot declare instance members in a static class
2 // Line: 6
3
4 static class StaticClass
5 {
6         public int i;
7 }