[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-447-2-lib.cs
1 // Compiler options: -t:library
2
3 using System;
4
5 public class C
6 {
7         public static string Print (string s)
8         {
9                 return s;
10         }
11 }
12
13 public interface G<T>
14 {
15 }