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-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
dcs1968.cs
blob
eb83d2ca1f53275f2191e8c5bec6a501e407e255
1
// CS1966: A constraint cannot be the dynamic type `I<object>''
2
// Line: 8
3
4
interface
I
<
T
>
5
{
6
}
7
8
class
C
<
T
>
where T
:
I
<
dynamic
>
9
{
10
}