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-42.cs
blob
81de0cf86853033f310d2481f9f09cff243fc33e
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
object
a
;
11
string
s
=
null
;
12
13
var
res
=
s
?? (
a
=
null
);
14
Console
.
WriteLine
(
a
);
15
}
16
}