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
resync
[mcs.git]
/
errors
/
cs0165-13.cs
blob
58bf9d5a605cf459a8a944a121adcdce6c4f7d41
1
// cs0165-13.cs: Use of unassigned local variable `foo'
2
// Line: 9
3
4
struct
Rectangle { int x; public int X { set { }
} }
5
public class
Foo
{
6
public static void
Main
(
string
[]
args
)
7
{
8
Rectangle foo
;
9
foo
.
X
=
5
;
10
}
11
}