repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0445.cs
blob
efc703d7370c863ead91693670daf3749b053bc6
1
// CS0445: Cannot modify the result of an unboxing conversion
2
// Line: 10
3
4
struct
S
5
{
6
public int
val
;
7
8
public void
Do
(
object
o
)
9
{
10
((
S
)
o
).
val
=
4
;
11
}
12
}
13