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
2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
errors
/
dcs1968.cs
blob
2230b330fa9d31b7827a6e7142d6ecf3396b6dce
1
// CS1966: A constraint cannot be the dynamic type `I<dynamic>'
2
// Line: 8
3
4
interface
I
<
T
>
5
{
6
}
7
8
class
C
<
T
>
where T
:
I
<
dynamic
>
9
{
10
}