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
2010-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs0699-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
}