[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1948.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;