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
bring XslCompiledTransform to MonoTouch
[mcs.git]
/
errors
/
cs0170-2.cs
blob
911ebee02167770500290c50d38f25da55e6841e
1
// CS0170: Use of possibly unassigned field `c'
2
// Line: 11
3
4
struct
A
5
{
6
private long
b
;
7
private float
c
;
8
9
public
A
(
int
foo
)
10
{
11
b
= (
long
)
c
;
12
c
=
1
;
13
}
14
}