14 lines
159 B
C#
14 lines
159 B
C#
|
// CS0445: Cannot modify the result of an unboxing conversion
|
||
|
// Line: 10
|
||
|
|
||
|
struct S
|
||
|
{
|
||
|
public int val;
|
||
|
|
||
|
public void Do (object o)
|
||
|
{
|
||
|
((S)o).val = 4;
|
||
|
}
|
||
|
}
|
||
|
|