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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1966-2.cs
blob
fa3b409eaa0a1dd11988ccdc56e9a34014cff5bd
1
// CS1966: `C': cannot implement a dynamic interface `I<I<dynamic>>'
2
// Line: 8
3
4
interface
I
<
T
>
5
{
6
}
7
8
class
C
:
I
<
I
<
dynamic
>>
9
{
10
}