2 // Test case from bug 75270
7 void SetObject (string foo
);
11 public virtual void SetObject (string foo
) {
12 Console
.WriteLine ("A.SetObject {0}", foo
);
16 public class B
: A
, I
{
17 //public override void SetObject (string foo) {
18 //Console.WriteLine ("B.SetObject {0}", foo);
23 public static bool ok
= false;
24 public override void SetObject (string foo
) {
25 Console
.WriteLine ("C.SetObject {0}", foo
);
32 public static int Main (string[] args
) {
35 // Tests that C.SetObject is called here