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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs1931-2.cs
blob
e9cfe73d41bfb837e2e089d98237c2dc2f5b0023
1
// CS1931: A range variable `i' conflicts with a previous declaration of `i'
2
// Line: 13
3
4
5
using
System
;
6
using
System
.
Linq
;
7
8
class
C
9
{
10
public void
Foo
(
int
i
)
11
{
12
var
e
=
from
v
in
"a"
13
let
i
=
2
14
select
v
;
15
}
16
}