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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0128-3.cs
blob
380616cc2381667c00a896cf008814ba70d29398
1
// CS0128: A local variable named `x' is already defined in this scope
2
// Line: 9
3
4
class
X
5
{
6
public static void
Main
()
7
{
8
Foo
(
out int
x
);
9
Foo
(
out int
x
);
10
}
11
12
static void
Foo
(
out int
arg
)
13
{
14
arg
=
2
;
15
}
16
}