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