[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0405.cs
blob013dd8ced40bd3779d16578b7c9fd11b45cdeb5b
1 // CS0405: Duplicate constraint `I' for type parameter `T'
2 // Line: 8
4 interface I { }
6 class Foo<T>
7 where T : I, I