[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / gtest-partial-01.cs
1 using System;
2
3 class B<U>
4 {
5 }
6
7 partial class C<T> : B<T>
8 {
9         T t1;
10 }
11
12 partial class C<T> : B<T>
13 {
14         T t2;
15 }
16
17 class Test
18 {
19         public static void Main ()
20         {
21         }
22 }