[unit-tests] Fix Makefile.am when Mono is compiled with LLVM
[mono-project.git] / mcs / errors / cs0165-40.cs
blob690cdaecc127249d37a797dfc82f491f0162645e
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);