* Form.cs: Make the fix for #80775 windows-only (fixes #81957).
[mono.git] / mcs / errors / gcs0136.cs
1 // CS0136: A local variable named `ii' cannot be declared in this scope because it would give a different meaning to `ii', which is already used in a `parent' scope to denote something else\r
2 // Line: 14\r
3 // Compiler options: -langversion:linq\r
4 \r
5 using System;\r
6 using System.Collections.Generic;\r
7 using System.Linq;\r
8 \r
9 class Test\r
10 {\r
11         public static void Main ()\r
12         {\r
13                 int[] int_array = null;\r
14                 int ii = 0;\r
15                 IEnumerable<int> e = from int ii in int_array select "1";\r
16         }\r
17 }\r