[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs1715-3.cs
blobd3cd5dab0f707687039d0f34ffe67846a72573fa
1 // CS1715: `B.Foo': type must be `int' to match overridden member `A.Foo'
2 // Line: 11
4 public abstract class A
6 public abstract ref int Foo { get; }
9 public class B : A
11 public override ref long Foo {
12 get {
13 throw null;