[CI] ignore appdomain-unload-asmload.exe on interp and full-aot
[mono.git] / mono / tests / verifier / valid_iface_with_variant_constraint.cs
1 using System;
2
3
4 interface IFoo<out T> {}
5
6 interface IFoo2<T> where T : IFoo<object> {}
7
8 public class Foo : IFoo2<IFoo<string>> {}
9
10  
11 public class Test
12 {
13     static int Main ()
14     {
15         return 0;
16     }
17 }