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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0165-41.cs
blob
b1242a054c14fbd0c1906bd5bd6fc3819466b3a0
1
// CS0165: Use of unassigned local variable `a'
2
// Line: 14
3
4
using
System
;
5
6
class
Program
7
{
8
public static void
Main
()
9
{
10
int
a
;
11
string
s
=
""
;
12
13
var
res
= (
s
==
""
&& (
a
=
4
) >
3
) ?
1
:
a
;
14
}
15
}