remove unused using
[mcs.git] / tests / test-723.cs
blob120716325cb7c2f42979ab24e2478936e9d0b762
1 interface ICollectionValue
3 int Count { get; }
6 interface ISCGCollection
8 int Count { get; }
11 interface ICollection : ISCGCollection, ICollectionValue
13 new int Count { get; }
16 interface ISequenced : ICollection
20 class Test : ISequenced
22 public int Count { get { return 0; } }
25 static class Maine
27 public static int Main ()
29 ISequenced t = new Test ();
30 if (t.Count != 0)
31 return 1;
32 return 0;