[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0535-3.cs
blob8647aa0d9585577cdf2bfac78baed719163a1daa
1 // CS0535: `Test' does not implement interface member `X.Hola(ref string)'
2 // Line: 9
4 using System;
5 interface X {
6 void Hola (ref string name);
9 class Test : X {
10 static void Main ()
14 public void Hola (out string name)
16 name = null;