2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1612-6.cs
blob6278d4ce72c609e7cd60519a3058a4407f0388f4
1 // CS1612: Cannot modify a value type return value of `Test.v'. Consider storing the value in a temporary variable
2 // Line: 28
4 public struct V
6 public int this [int i] {
7 set {
11 public int x;
14 class Test
16 V m_value;
18 public V v { get { return m_value; } }
20 public Test ()
22 m_value = new V ();
25 public static void Main ()
27 Test t = new Test ();
28 t.v [0] = 9;