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
/
dcs1966.cs
blob
ad76aa5cf1dd053709c1064cffc6853102756d01
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
}