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
/
cs1966-3.cs
blob
59b15b72670255fed248e8651afd8a538659b0ce
1
// CS1966: `C': cannot implement a dynamic interface `I<dynamic[]>'
2
// Line: 8
3
4
interface
I
<
T
>
5
{
6
}
7
8
class
C
:
I
<
dynamic
[]>
9
{
10
}