[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-561-lib.cs
1 // Compiler options: -t:library
2
3 using System.Collections.Generic;
4
5 public interface I
6 {
7         void Foo<T> (List<T> arg) where T : A;
8 }
9
10 public class A : AB, IB
11 {
12 }
13
14 public abstract class AB : IC
15 {
16 }
17
18 public interface IB
19 {
20 }
21
22 public interface IC
23 {
24 }