[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs8152.cs
blob45546ad9d9af750e4851f17cbfbf0256745b1aea
1 // CS8152: `C' does not implement interface member `IA.Foo()' and the best implementing candidate `C.Foo()' return type `void' does not return by reference
2 // Line: 11
4 interface IA
6 ref char Foo ();
9 public class C : IA
11 public void Foo ()