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-03-03 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
cs0165.cs
blob
42647b1083337b90a0f62b73574082e40feefc53
1
// cs0165.cs: Use of unassigned local variable `errors'
2
// Line: 9
3
4
class
T
{
5
static void
Main
()
6
{
7
int
errors
;
8
9
errors
+=
1
;
10
}
11
}