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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0188-6.cs
blob
283c73ca2b35e6b7806e844b50b1d83b969f1960
1
// CS0188: The `this' object cannot be used before all of its fields are assigned to
2
// Line: 10
3
4
struct
B
5
{
6
public int
a
;
7
8
public
B
(
int
foo
)
9
{
10
Test
(
this
);
11
a
=
1
;
12
}
13
14
static void
Test
(
B b
)
15
{
16
}
17
}