Remove excessive shortcut key matching in ToolStrip
[mono.git] / mcs / errors / cs0841-5.cs
1 // CS0841: A local variable `x' cannot be used before it is declared
2 // Line: 8
3
4 class X
5 {
6         public static void Main ()
7         {
8                 Foo (x, out var x);
9         }
10
11         static void Foo (int arg, out int value)
12         {
13                 value = 3;
14         }
15 }