Added tests for Task.WhenAll w/ empty list
[mono.git] / mcs / tests / gtest-579.cs
1 public interface IA<T>
2 {
3 }
4
5
6 public class G<U, V> : IA<G<V, string>>
7 {
8 }
9
10 public class C
11 {
12         public static int Main ()
13         {
14                 G<long, short> p = new G<long, short> ();
15                 if (p is IA<G<string, string>>)
16                         return 1;
17
18                 return 0;
19         }
20 }