merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[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 }