Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0165-39.cs
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 16
3
4 using System;
5
6 class Program
7 {
8         public static void Main ()
9         {
10                 int a;
11                 string s = "";
12
13                 for (int i = 0; s != "s" && (a = 4) > 3; ++i) {
14                 }
15
16                 Console.WriteLine (a);
17         }
18 }