1 // cs0467.cs: Ambiguity between method `ICounter.Count(int)' and non-method `IList.Count'. Using method `ICounter.Count(int)'
3 // Compiler options: -warnaserror -warn:2
9 int Count { get; set; }
19 void Count (params int[] i
);
22 interface IListCounter
: IEx
, IList
, ICounter
28 static void Foo (IListCounter t
)