Align libgcmonosgen vcxproj with makefile.
[mono.git] / mcs / errors / cs0165-31.cs
1 // CS0165: Use of unassigned local variable `i'
2 // Line: 9
3
4 public class MainClass
5 {
6         public void Foo ()
7         {
8                 int i;
9                 i++;
10         }
11 }