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.cs
blob
258161803f9441010e517e4ab9a904ffd7b0a5f3
1
// CS0171: Field `X.x' must be fully assigned before control leaves the constructor
2
// Line:
3
struct
X
{
4
public readonly int
x
;
5
6
X
(
int
a
)
7
{
8
}
9
10
static void
Main
() {}
11
}