[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0229-2.cs
bloba52270fcaa05a51f0bb566f3e2bf7116eb846e47
1 // CS0229: Ambiguity between `IList.Test' and `ICounter.Test'
2 // Line: 26
4 using System;
6 delegate void Foo ();
8 interface IList
10 event Foo Test;
13 interface ICounter
15 event Foo Test;
18 interface IListCounter: IList, ICounter
22 class Test
24 static void Foo (IListCounter t)
26 t.Test += null;