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
/
cs0236-4.cs
blob
a28152ea2a80d85f37e3dab405cc5223708df351
1
// CS0236: A field initializer cannot reference the nonstatic field, method, or property `C.stuff'
2
// Line: 6
3
4
class
C
5
{
6
object
stuff
=
stuff
;
7
8
public
C
(
object
stuff
)
9
{
10
}
11
}