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
[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git]
/
mcs
/
errors
/
cs0165-3.cs
blob
524818b694211d0ac90f6c553f3fcd19b6f97b01
1
// CS0165: Use of unassigned local variable `s'
2
// Line: 9
3
4
public class
Test
5
{
6
public static string
Foo
{
7
get
{
8
string
s
;
9
if
(
0
==
1
&& (
s
=
""
) ==
"a"
||
s
==
""
)
10
return
s
;
11
return
" "
;
12
}
13
}
14
}