[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0165-34.cs
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 14
3
4 using System;
5
6 class Program
7 {
8         public static void Main ()
9         {
10                 int a;
11                 string s = "";
12
13                 if (s != "s" || (a = 4) > 3) {
14                         Console.WriteLine (a);
15                 }
16         }
17 }