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-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
gcs0701.cs
blob
f7c3fcb1ae218479146622f918c6d5be3f5c18d7
1
// CS0701: `A' is not a valid constraint. A constraint must be an interface, a non-sealed class or a type parameter
2
// Line: 6
3
4
sealed class
A { }
5
6
class
Foo
<
T
>
where T
:
A
7
{
8
}