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
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs0701-2.cs
blob
4075c2e6cada8c9a60660c82484c384d74ec4920
1
// CS0701: `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
}