[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-xml-046.cs
1 // Compiler options: -doc:xml-046.xml -warnaserror
2 /// <summary />
3 public interface IExecutable {
4         /// <summary />
5         void Execute ();
6
7         /// <summary />
8         object Current {
9                 get; 
10         }
11 }
12
13 /// <summary>
14 /// <see cref="Execute" />
15 /// <see cref="Current" />
16 /// </summary>
17 public class A : IExecutable {
18         static void Main () {
19         }
20
21         /// <summary />
22         public void Execute () {
23         }
24
25         /// <summary />
26         public object Current {
27                 get { return null; }
28         }
29 }
30