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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0128.cs
blob
fcdd1627c664ac83b1d2c2156f2deca99c6770ea
1
// CS0128: A local variable named `x' is already defined in this scope
2
// Line: 8
3
4
class
x
{
5
static int
y
()
6
{
7
int
x
=
1
;
8
int
x
=
2
;
9
10
return
x
+
x
;
11
}
12
}