[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-084.cs
1 namespace HasherBuilder
2 {
3         public class ByPrototype<S>
4         {
5                 public static IHasher<S> Examine()
6                 {
7                         return null;
8                 }
9         }
10 }
11
12 public interface IHasher<T>
13 {
14 }
15
16 public class ArrayList<U>
17 {
18         public IHasher<U> GetHasher ()
19         {
20                 return HasherBuilder.ByPrototype<U>.Examine();
21         }
22 }
23
24 class X
25 {
26         public static void Main ()
27         { }
28 }
29