[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-278-4-lib.cs
1 // Compiler options: -t:library
2
3 using System;
4
5 public class C
6 {
7         public class CC
8         {
9                 public static string Print ()
10                 {
11                         return typeof (CC).FullName;
12                 }
13         }
14
15         public static string Print ()
16         {
17                 return typeof (C).FullName;
18         }
19 }
20
21 public class D
22 {
23         public static string Print ()
24         {
25                 return typeof (D).FullName;
26         }
27 }
28
29 public struct G<T>
30 {
31         public static T Test (T t)
32         {
33                 return t;
34         }
35 }