"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0169.cs
blob62d41a610f2bc65bad1590b005c469166d40acc2
1 // CS0169: The private field `X.x' is never used
2 // Line: 4
3 // Compiler options: -warnaserror -warn:4
5 class X {
6 int x;
8 static void Main () {}