[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0266-26.cs
blob2c8df06f03d3ecd52e5b3bca5f5f84d020f79c68
1 // CS0266: Cannot implicitly convert type `System.Collections.Generic.IEnumerable<T>' to `System.Collections.Generic.IEnumerable<U>'. An explicit conversion exists (are you missing a cast?)
2 // Line: 12
4 using System;
5 using System.Collections.Generic;
7 public class Test
9 static void Bla<T, U> () where T : U
11 IEnumerable<T> ita = null;
12 IEnumerable<U> itu = ita;