Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / test-746.cs
1 // Compiler options: -warnaserror -warn:4
2
3 using System;
4
5 interface IList 
6 {
7         int Count { get; set; }
8 }
9
10 interface ICounter
11 {
12         void Count (int i);
13 }
14
15 interface IEx
16 {
17         void Count (params int[] i);
18 }
19
20 interface IListCounter: IEx, IList, ICounter
21 {
22 }
23
24 class Test
25 {
26         static void Foo (IListCounter t)
27         {
28                 t.Count (1); 
29         }
30         
31         public static void Main ()
32         {
33         }
34 }