Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs1948-2.cs
1 // CS1948: A range variable `T' conflicts with a method type parameter
2 // Line: 13
3
4 using System;
5 using System.Linq;
6
7 class C
8 {
9         public static void Foo <T> ()
10         {
11                 var s = "0";
12                 var e = from T in "a"
13                         select T + s;
14         }
15 }