[amd64] Add XMM registers to MonoContext on linux
[mono.git] / mcs / errors / cs0445-3.cs
1 // CS0445: Cannot modify the result of an unboxing conversion
2 // Line: 8
3
4 struct S
5 {
6         public void Do (object o)
7         {
8                 ((S) o)[1] = 4;
9         }
10
11         int this[int arg] { set { } }
12 }
13