TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs1948-2.cs
blob5895fecfc74d06a29c4f9972434802aba24c33d5
1 // CS1948: A range variable `T' conflicts with a method type parameter
2 // Line: 13
4 using System;
5 using System.Linq;
7 class C
9 public static void Foo <T> ()
11 var s = "0";
12 var e = from T in "a"
13 select T + s;