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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0188-7.cs
blob
1104a386705ceead2081cd8ba4ec83771554e8b7
1
// CS0188: The `this' object cannot be used before all of its fields are assigned to
2
// Line: 10
3
4
public struct
Test
5
{
6
internal int
x
;
7
8
public
Test
(
int
x
)
9
{
10
X
=
x
;
11
}
12
13
public int
X
14
{
15
get
{ return x; }
16
set
{ x = value; }
17
}
18
}