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