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
2009-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
gcs0029-7.cs
blob
a36e493685bc8681def1540085fc64e46d76f2ed
1
// CS0029: Cannot implicitly convert type `T[]' to `I[]'
2
// Line: 12
3
4
interface
I
5
{
6
}
7
8
class
C
9
{
10
static void
Foo
<
T
> (
T
[]
t
)
where T
:
I
11
{
12
I
[]
i
=
t
;
13
}
14
}