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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
gcs0406-2.cs
blob
47aa66c32409d49013811bd205372fad2ac311fa
1
// CS0406: The class type constraint `A' must be listed before any other constraints. Consider moving type constraint to the beginning of the constraint list
2
// Line: 7
3
4
class
A { }
5
interface
I { }
6
7
class
Foo
<
T
>
where T
:
I
,
A
8
{
9
}