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
Merge pull request #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs0165-38.cs
blob
20fc40949fde379a1694e7f5d44807f40aab30b9
1
// CS0165: Use of unassigned local variable `a'
2
// Line: 16
3
4
using
System
;
5
6
class
Program
7
{
8
public static void
Main
()
9
{
10
int
a
;
11
string
s
=
""
;
12
13
do
{
14
}
while
(
s
!=
"s"
&& (
a
=
4
) >
3
);
15
16
Console
.
WriteLine
(
a
);
17
}
18
}