repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
avoid using a custom sources file for the net_2_1_raw profile
[mcs.git]
/
errors
/
cs0165-3.cs
blob
192b7f7e0bdc00c36d2f340dc07afa3c39b40299
1
// cs0165.cs: 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
}