1 // CS1502: The best overloaded method match for `TestCase.TestS(ref object)' has some invalid arguments
10 public class TestCase
{
12 public static void Main() {
14 Struct s
= new Struct();
19 System
.Console
.WriteLine("{0} {1} {2}", s
.x
, s
.y
, s
.z
);
24 public static void TestS(ref object ino
) {
25 System
.Console
.WriteLine("{0}", ((Struct
)(ino
)).x
);