[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0165-53.cs
blob571eddc3d2c49363f2a2168ca4b6c2d587027599
1 // CS0165: Use of unassigned local variable `v'
2 // Line: 19
4 using System;
6 class X
8 void Foo (out int value)
10 value = 1;
13 public static void Main ()
15 int v;
16 X[] x = null;
18 x?[0].Foo (out v);
19 Console.WriteLine (v);