[mcs] Initial by ref returns and variables support
[mono.git] / mcs / errors / cs8152.cs
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
3
4 interface IA
5 {
6         ref char Foo ();
7 }
8
9 public class C : IA
10 {
11         public void Foo ()
12         {
13         }
14 }