[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0019-63.cs
blob4e766c02199139275605be7284fdb1fe1491cbb2
1 // CS0019: Operator `==' cannot be applied to operands of type `U' and `null'
2 // Line: 13
4 abstract class A<T>
6 public abstract bool Foo<U> (U arg) where U : T;
9 class B : A<byte>
11 public override bool Foo<U> (U arg)
13 return arg == null;