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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs1604.cs
blob
aade078c9b4afb443ae1d5683c30b5303496a804
1
// CS1604: Cannot assign to `this' because it is read-only
2
// Line: 8
3
4
class
C
5
{
6
public void
Main
()
7
{
8
this
=
null
;
9
}
10
}