Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0165.cs
1 // CS0165: Use of unassigned local variable `errors'
2 // Line: 9
3
4 class T {
5         static void Main ()
6         {
7                 int errors;
8
9                 errors += 1;
10         }
11 }