[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0445-3.cs
blobb933dfd4e9a11a600bb5c639b90c637260d57f0b
1 // CS0445: Cannot modify the result of an unboxing conversion
2 // Line: 8
4 struct S
6 public void Do (object o)
8 ((S) o)[1] = 4;
11 int this[int arg] { set { } }