eol
[mcs.git] / tests / test-598.cs
blobd2333f9ae845e3f9f636a4a135ab829a222b40e8
1 public struct V
3 public int this [int i] {
4 set {
8 public int x;
11 class Test
13 V m_value;
15 public V v { get { return m_value; } }
17 public Test ()
19 m_value = new V ();
20 m_value [0] = 1;
23 public static void Main ()