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
"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git]
/
mcs
/
errors
/
cs0165.cs
blob
d03d86362606979d33db01128961f112cfab2d78
1
// CS0165: 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
}