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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0445.cs
blob
e1b32500a625989086ee482e720e2ec5b3135d0e
1
// cs0445.cs: 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