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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1930-2.cs
blob
078a83a2a88820293b5d9c76f92670afae25df9e
1
// CS1930: A range variable `i' has already been declared in this scope
2
// Line: 14
3
4
5
using
System
;
6
using
System
.
Linq
;
7
8
class
C
9
{
10
public static void
Main
()
11
{
12
var
e
=
from
v
in
"a"
13
let
i
=
1
14
let
i
=
2
15
select
v
;
16
}
17
}