Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-partial-02.cs
1 partial class A<T>
2 {
3         void Test ()
4         {
5                 this.CurrentItem = null;
6         }
7 }
8
9 partial class A<T> where T : class
10 {
11         T CurrentItem { get; set; }
12 }
13
14 class C
15 {
16         public static void Main ()
17         {
18         }
19 }