Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git] / mcs / errors / cs0103-11.cs
blob6d201877617596bb9cd5863903774fd3699ed930
1 // CS0103: The name `a1' does not exist in the current context
2 // Line: 11
4 using System.Linq;
6 class C
8 public static void Main ()
10 var e =
11 from a1 in "abcd"
12 select a1;
14 a1 = null;