Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0414.cs
1 // CS0414: The private field `X.i' is assigned but its value is never used
2 // Line: 6
3 // Compiler options: -warnaserror -warn:3
4
5 class X {
6         int i = 3;
7         
8         public void Y ()
9         {
10         }
11 }