[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0412-2.cs
blob058629f4e7cfa44b74eaca76cb21949dba1c329f
1 // CS0412: The type parameter name `T' is the same as local variable or parameter name
2 // Line: 8
4 using System;
6 interface I
8 T Foo<T>(IComparable T);