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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0029-27.cs
blob
90bc419bf4d98e8bd34d0b874c45f73c3fe82ff1
1
// CS0029: Cannot implicitly convert type `T[]' to `System.Collections.Generic.IList<U>'
2
// Line: 10
3
4
using
System
.
Collections
.
Generic
;
5
6
class
Program
7
{
8
static
IList
<
U
>
Foo
<
T
,
U
> (
T
[]
arg
)
where T
:
U
9
{
10
return
arg
;
11
}
12
}