2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-746.cs
blob49c1d88ca32b029a9c298630343579481b8f4f42
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 ()