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-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs1931-3.cs
blob
fe74f65bcb4681f8071f635eac2cbed14e2d351b
1
// CS1931: A range variable `ii' conflicts with a previous declaration of `ii'
2
// Line: 14
3
4
5
using
System
;
6
using
System
.
Collections
.
Generic
;
7
using
System
.
Linq
;
8
9
class
Test
10
{
11
public static void
Main
()
12
{
13
int
[]
int_array
=
null
;
14
int
ii
=
0
;
15
IEnumerable
<
int
>
e
=
from int
ii
in
int_array
select
"1"
;
16
}
17
}