[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0841-5.cs
1 // CS0841: A local variable `x' cannot be used before it is declared
2 // Line: 8
3 // Compiler options: -langversion:experimental
4
5 class X
6 {
7         public static void Main ()
8         {
9                 Foo (x, out var x);
10         }
11
12         static void Foo (int arg, out int value)
13         {
14                 value = 3;
15         }
16 }