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-03-02 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
gcs1931.cs
blob
74d517d261595f81444a961e1465774e01b4e3db
1
// CS1931: A range variable `i' conflicts with a previous declaration of `i'
2
// Line: 14
3
4
5
using
System
;
6
using
System
.
Linq
;
7
8
class
C
9
{
10
public static void
Main
()
11
{
12
int
i
=
9
;
13
var
e
=
from
v
in
"a"
14
let
i
=
2
15
select
v
;
16
}
17
}