[tuner] handle the case with multiple "preserve" attributes
[mono-project.git] / mcs / tests / gtest-232-lib.cs
blob64aaa4a05a6ecda6efbc09394a68c6efd06e1721
1 // Compiler options: -t:library
3 public class A<T>
5 public class B<U>
7 public class C<V>
9 public T T;
10 public U U;
14 public class B2
16 public T T;
18 public class C<V>
20 public T T2;
25 public static class Factory
27 public static A<int>.B<bool>.C<string> Create_1()
29 return new A<int>.B<bool>.C<string> ();
32 public static A<int>.B2.C<string> Create_2()
34 return new A<int>.B2.C<string> ();
37 public static A<int>.B2 Create_3()
39 return new A<int>.B2 ();