[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0445.cs
blobefc703d7370c863ead91693670daf3749b053bc6
1 // CS0445: 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;