[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0165-34.cs
blob229f472f6dca5134092acca612c0035eadee5868
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 14
4 using System;
6 class Program
8 public static void Main ()
10 int a;
11 string s = "";
13 if (s != "s" || (a = 4) > 3) {
14 Console.WriteLine (a);