2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0445.cs
blobe1b32500a625989086ee482e720e2ec5b3135d0e
1 // cs0445.cs: Cannot modify the result of an unboxing conversion
2 // Line: 10
4 struct S
6 public int val;
8 public void Do (object o)
10 ((S)o).val = 4;