[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-415.cs
1 // Compiler options: -r:test-415-lib.dll
2
3 using System;
4 public class MyTestExtended : MyTestAbstract
5 {
6         public MyTestExtended() : base()
7         {
8         }
9
10         protected override string GetName() { return "foo"; }
11         public static void Main(string[] args)
12         {
13                 Console.WriteLine("Calling PrintName");
14                 MyTestExtended test = new MyTestExtended();
15                 test.PrintName();
16                 Console.WriteLine("Out of PrintName");
17         }
18         
19 }