[mcs] Add expression bodied syntax for accessors. Fixes #54991
[mono.git] / mcs / errors / cs0165-35.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                         return;
15                 }
16                 
17                 Console.WriteLine (a);
18         }
19 }