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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0188.cs
blob
2a8c46966ac66ee2357284fedec5e9c28b8f7e91
1
// CS0188: The `this' object cannot be used before all of its fields are assigned to
2
// Line: 6
3
4
struct
Sample
{
5
public
Sample
(
string
text
) {
6
Initialize
();
7
this
.
text
=
text
;
8
}
9
10
void
Initialize
() {
11
}
12
13
public string
text
;
14
}