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-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0449-2.cs
blob
6ed5fb8d47ee70950de5c8e7527f842788e50dcb
1
// CS0449: The `class' or `struct' constraint must be the first constraint specified
2
// Line: 8
3
4
public interface
I
5
{
6
}
7
8
public class
C
<
T
>
where T
:
I
,
class
9
{
10
}