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-55.cs
blob
3375850f71942ec56b1268e5da507a3e8db4228f
1
// CS0165: Use of unassigned local variable `res'
2
// Line: 11
3
4
class
X
5
{
6
public static int
Main
()
7
{
8
string
[]
a
=
null
;
9
int
res
;
10
var
m
=
a
?[
res
=
3
];
11
System
.
Console
.
WriteLine
(
res
);
12
return
0
;
13
}
14
}