[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs0165-46.cs
blobb9fc087b1afed8210dac912dacfad6f73720ea8b
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 16
4 class Test
6 public static bool Foo (out int v)
8 v = 0;
9 return false;
12 static void Main()
14 int a;
15 bool b = false;
16 if ((b || Foo (out a)) && b)
17 return;
18 else
19 System.Console.WriteLine (a);