[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs0165-35.cs
blobad3604f55b07778b8606e442381688a169b7acb2
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 return;
17 Console.WriteLine (a);