2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1061-3.cs
blob34d76c388c26dc0311cef091bc2c0cf4bb47c783
1 // CS1061: Type `object' does not contain a definition for `Test' and no extension method `Test' of type `object' could be found (are you missing a using directive or an assembly reference?)
2 // Line: 17
4 public class S
6 public static void Test()
11 public class M
13 public object S { get; set; }
15 public void Main ()
17 S.Test ();