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
2010-03-02 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
gcs0405.cs
blob
7a362e679d2a84f2fcc7c3e73c431f30e1605b67
1
// gcs0405.cs: Duplicate constraint `I' for type parameter `T'
2
// Line: 8
3
4
interface
I { }
5
6
class
Foo
<
T
>
7
where T
:
I
,
I
8
{
9
}