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
/
cs0844.cs
blob
dc7f835a5fbe6fb10ed2a32f910c96bf09f8ab70
1
// CS0844: A local variable `s' cannot be used before it is declared. Consider renaming the local variable when it hides the field `C.s'
2
// Line: 10
3
4
class
C
5
{
6
string
s
;
7
8
public void
Test
()
9
{
10
s
=
"x"
;
11
string
s
=
"a"
;
12
}
13
}