[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / tests / gtest-285.cs
1 using System;
2 using System.Collections.Generic;
3
4 public class A {
5 }
6
7 public class B : A {
8 }
9
10 public class Tests
11 {
12         public static void Main ()
13         {
14                 IList<A> a = new B [0];
15
16                 Console.WriteLine (typeof (IList<A>).IsAssignableFrom (typeof (B[])));
17         }
18 }
19