[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0841-5.cs
blob8872ce40389e8701988fec1dd226606143890cf4
1 // CS0841: A local variable `x' cannot be used before it is declared
2 // Line: 8
3 // Compiler options: -langversion:experimental
5 class X
7 public static void Main ()
9 Foo (x, out var x);
12 static void Foo (int arg, out int value)
14 value = 3;