1 // cs0467-3.cs: Ambiguity between method `ICounter.Count()' and non-method `ICollection.Count'. Using method `ICounter.Count()'
3 // Compiler options: -warnaserror -warn:2
22 interface IListCounter
: IList
, ICounter
, ICollection
26 interface IListCounterNew
: IListCounter
32 static void Foo (IListCounterNew t
)