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-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs1930.cs
blob
83f0fb38239b92a238c38ed93205ca9ed31e3da7
1
// CS1930: A range variable `v' has already been declared in this scope
2
// Line: 13
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
v
=
1
14
select
v
;
15
}
16
}