2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0229-2.cs
blob3ba228f69ca96e03d75682a26a6abd8b0571c38a
1 // cs0229-2.cs: 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;