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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0171-6.cs
blob
31730076f09832fcdd7c6d8bdf2006f6704974e3
1
// CS0171: Field `S.value' must be fully assigned before control leaves the constructor
2
// Line: 10
3
4
using
System
;
5
6
struct
S
7
{
8
internal string value
;
9
10
public
S
(
int
arg
)
11
{
12
if
(
arg
>
0
) {
13
return
;
14
}
15
16
throw new
ApplicationException
();
17
}
18
}