GenericParameter.cs: override Module properly
[mcs.git] / tests / gtest-100.cs
blob1132720ceba72ea1152752e659eb6af8933187ff
1 using System;
3 // Runtime test for mono_class_setup_vtable()
4 namespace C5
6 public interface ICollection<T>
8 void Test<U> ();
11 public abstract class ArrayBase<T> : ICollection<T>
13 void ICollection<T>.Test<U> ()
14 { }
17 public class ArrayList<V> : ArrayBase<V>
22 class X
24 static void Main ()
26 C5.ArrayList<int> array = new C5.ArrayList<int> ();