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
/
cs0171-5.cs
blob
71ce7020cc16295a2e53a6bdd6c02c16685bbc99
1
// CS0171: Field `Test.v2' must be fully assigned before control leaves the constructor
2
// Line: 28
3
4
public struct
V
5
{
6
public int
x
;
7
}
8
9
struct
Test
10
{
11
public
V v1
;
12
public
V v2
;
13
14
public
Test
(
int
mm
)
15
{
16
v1
=
new
V
();
17
}
18
19
public static void
Main
()
20
{
21
}
22
}