[w32file] Remove dead code
[mono.git] / mcs / errors / cs0169.cs
1 // CS0169: The private field `X.x' is never used
2 // Line: 4
3 // Compiler options: -warnaserror -warn:4
4
5 class X {
6         int x;
7
8         static void Main () {}
9 }