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
Update the reference assemblies we ship in mono.
[mono-project.git]
/
mcs
/
errors
/
cs0165-33.cs
blob
16afc7db6f60c20c933045d470c5da9a80781dbb
1
// CS0165: Use of unassigned local variable `a'
2
// Line: 13
3
4
using
System
;
5
using
System
.
Diagnostics
;
6
7
class
C
8
{
9
static int
Main
()
10
{
11
int
a
;
12
Foo
(
a
=
9
);
13
return
a
;
14
}
15
16
[
Conditional
(
"MISSING"
)]
17
static void
Foo
(
int value
)
18
{
19
}
20
}