TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs8148.cs
blob1e9178945c016b6d583da185f2df031f3785e5be
1 // CS8148: `B.Foo()': must not return by reference to match overridden member `A.Foo()'
2 // Line: 11
4 public abstract class A
6 public abstract int Foo ();
9 public class B : A
11 public override ref int Foo ()