[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-161.cs
1 using System;
2
3 public class ZipEntry
4 {
5         DateTime cal = DateTime.Now;
6
7         public ZipEntry(string name)
8         {
9         }
10
11         public ZipEntry(ZipEntry e)
12         {
13         }
14
15         public DateTime DateTime {
16                 get {
17                         return cal;
18                 }
19         }
20
21         public static int Main () {
22                 // Compilation only test.
23                 return 0;
24         }
25 }