Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1931-4.cs
1 // CS1931: A range variable `i' conflicts with a previous declaration of `i'
2 // Line: 12
3
4 using System;
5 using System.Linq;
6
7 class C
8 {
9         public static void Main ()
10         {
11                 int i = 9;
12                 var e = from i in "a"
13                         select 1;
14         }
15 }