[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0455-5.cs
blob3844f9de2c505fd0fb20d485d138fa167fa170fe
1 // CS0455: Type parameter `Y' inherits conflicting constraints `class' and `long'
2 // Line: 11
4 abstract class A<T>
6 public abstract void Foo<U> () where U : class, T;
9 class B : A<long>
11 public override void Foo<Y> ()