e7f2b00789fd262f1cef99f7f478aba9d8252d69
[mono.git] / mcs / errors / cs0169.cs
1 // cs0169.cs: 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 }