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
/
gcs0030-3.cs
blob
b35e8ebe1fb383c5b41c2ff210561f3414de4eac
1
// CS0030: Cannot convert type `T[,]' to `System.Collections.Generic.IEnumerable<T>'
2
// Line: 10
3
4
using
System
.
Collections
.
Generic
;
5
6
class
C
7
{
8
IEnumerable
<
T
>
Foo
<
T
> (
T
[,]
a
)
9
{
10
return
(
IEnumerable
<
T
>)
a
;
11
}
12
}