[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-673.cs
1 using System;
2
3 class Test
4 {
5         // Foo
6         static void \u0046oo () 
7         {
8         }
9         
10         public static int Main ()
11         {
12                 const string a = "\U00010041";
13                 const string b = "\U0010FEDC";
14                 
15                 Console.WriteLine ((int) a[0]);
16                 if ((int) a[0] != 0xD800)
17                         return 1;
18
19                 Console.WriteLine ((int) a[1]);
20                 if ((int) a[1] != 0xDC41)
21                         return 2;
22                 
23                 Foo ();
24                 
25                 return 0;
26         }
27 }
28