2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-285.cs
blobc32e6e39a84428cb5ed5de9ed2997ae655991e58
1 using System;
2 using System.Collections.Generic;
4 public class A {
7 public class B : A {
10 public class Tests
12 public static void Main ()
14 IList<A> a = new B [0];
16 Console.WriteLine (typeof (IList<A>).IsAssignableFrom (typeof (B[])));