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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0165-28.cs
blob
4b22f7d0b480fd2acb1a09431b3cd96ddfa7375b
1
// CS0165: Use of unassigned local variable `a'
2
// Line: 13
3
4
using
System
;
5
6
class
Program
7
{
8
public static void
Main
()
9
{
10
int
a
;
11
string
s
=
""
;
12
var
res
=
s
==
null
|| ((
a
=
1
) >
0
);
13
Console
.
WriteLine
(
a
);
14
}
15
}