* HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
[mono.git] / mcs / errors / cs0165.cs
1 // cs0165.cs: Use of unassigned local variable
2 // Line: 9
3
4 class T {
5         static void Main ()
6         {
7                 int errors;
8
9                 errors += 1;
10         }
11 }