* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0535-3.cs
1 // cs0535-3.cs: `Test' does not implement interface member `X.Hola(ref string)'
2 // Line: 9
3
4 using System;
5 interface X {
6         void Hola (ref string name);
7 }
8
9 class Test : X {
10         static void Main ()
11         {
12         }
13
14         public void Hola (out string name)
15         {
16                 name = null;
17         }
18 }
19