Merge branch 'alexischr/nursery-canaries-managed-alloc'
[mono.git] / mcs / errors / cs0165-38.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                 do {
14                 } while (s != "s" && (a = 4) > 3);
15
16                 Console.WriteLine (a);
17         }
18 }