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-2.cs
blob
6ec3fa7a017051c503c2e86686116bbd13a467bf
1
// CS0188: The `this' object cannot be used before all of its fields are assigned to
2
// Line: 10
3
4
struct
B
5
{
6
public int
a
;
7
8
public
B
(
int
foo
)
9
{
10
Test
();
11
}
12
13
public void
Test
()
14
{
15
}
16
}