repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0188-2.cs
blob
3ffa7a4610d1927ce1b83eaa29bd3f100286f834
1
// cs0188-2.cs: 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
();
11
}
12
13
public void
Test
()
14
{
15
}
16
}