repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs1932-2.cs
blob
f58cb3c9ec4e8594893afdb8510520a68498c443
1
// CS1932: A range variable `ii' cannot be initialized with `method group'
2
// Line: 12
3
4
using
System
;
5
using
System
.
Linq
;
6
7
class
C
8
{
9
public void
Foo
(
int
i
)
10
{
11
var
e
=
from
v
in
"a"
12
let
ii
=
Foo
13
select
v
;
14
}
15
}