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
/
cs0843.cs
blob
9849c4ae672385684e1392eae4e8c6c71f60aaf8
1
// CS0843: An automatically implemented property `S.Short' must be fully assigned before control leaves the constructor. Consider calling the default struct contructor from a constructor initializer
2
// Line: 8
3
4
using
System
;
5
6
struct
S
7
{
8
public
S
(
int value
)
9
{
10
}
11
12
public short
Short { get; set; }
13
}