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
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs1931-4.cs
blob
6088435221f21d5ccf5da0e8bc35f9762f8c174a
1
// CS1931: A range variable `i' conflicts with a previous declaration of `i'
2
// Line: 12
3
4
using
System
;
5
using
System
.
Linq
;
6
7
class
C
8
{
9
public static void
Main
()
10
{
11
int
i
=
9
;
12
var
e
=
from
i
in
"a"
13
select
1
;
14
}
15
}