[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / test-746.cs
blob7ed53fdb00f04cc81e4549da58a926e52f917b25
1 // Compiler options: -warnaserror -warn:4
3 using System;
5 interface IList
7 int Count { get; set; }
10 interface ICounter
12 void Count (int i);
15 interface IEx
17 void Count (params int[] i);
20 interface IListCounter: IEx, IList, ICounter
24 class Test
26 static void Foo (IListCounter t)
28 t.Count (1);
31 public static void Main ()