[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / CS0315-2-lib.cs
1 public class A<T> where T : A<T>.N1<T>
2 {
3         public class N1<U>
4         {
5         }
6         
7         public void Foo (N1<int> arg)
8         {
9         }
10 }