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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0699-2.cs
blob
136769e8c5d8077d979436ff2fb2041a60d4e606
1
// CS0699: `I<T>': A constraint references nonexistent type parameter `U'
2
// Line: 8
3
4
partial interface
I
<
T
>
5
{
6
}
7
8
partial interface
I
<
T
>
where U
:
class
9
{
10
}