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-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs1932.cs
blob
1952868810664fc25323d65c0fff5da30ad21ac3
1
// CS1932: A range variable `ii' cannot be initialized with `void'
2
// Line: 13
3
4
5
using
System
;
6
using
System
.
Linq
;
7
8
class
C
9
{
10
public void
Foo
(
int
i
)
11
{
12
var
e
=
from
v
in
"a"
13
let
ii
=
Foo
(
2
)
14
select
v
;
15
}
16
}