2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1948.cs
blob07d503d411e2e567fc35c7af4a0ad4dbb0ff91d5
1 // CS1948: A range variable `T' conflicts with a method type parameter
2 // Line: 12
5 using System;
6 using System.Linq;
8 class C
10 public static void Foo <T> ()
12 var e = from T in "a"
13 select T;