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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0406.cs
blob
1d54a25fecd7a18951425dc50720aaee72d0de11
1
// CS0406: The class type constraint `B' must be listed before any other constraints. Consider moving type constraint to the beginning of the constraint list
2
// Line: 8
3
4
class
A { }
5
class
B { }
6
7
class
Foo
<
T
>
8
where T
:
A
,
B
9
{
10
}