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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs1932-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
}