[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs1061-3.cs
blob9c2f1285a243578c7c9be69993f2772b586a714b
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 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 ();