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
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0128.cs
blob
8d472c0b443dea7f5a26c50caf3f81a2ecafbff9
1
// cs0128.cs: A local variable named `x' is already defined in this scope
2
// Line:
3
4
class
x
{
5
static int
y
()
6
{
7
int
x
=
1
;
8
int
x
=
2
;
9
10
return
x
+
x
;
11
}
12
}