[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / tests / test-debug-20.cs
1 using System;
2
3 public partial struct S<T>
4 {
5 }
6
7 public partial struct S<T>
8 {
9         public S (T t)
10         {
11         }
12 }
13
14 class C
15 {
16         public static void Main ()
17         {
18         }
19 }