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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0454.cs
blob
386c875929d4f84d3313c529944fb959a23f9a90
1
// CS0454: Circular constraint dependency involving `T' and `U'
2
// Line: 7
3
using
System
;
4
5
class
Foo
<
T
,
U
>
6
where T
:
U
7
where U
:
T
8
{ }
9
10
class
X
11
{
12
static void
Main
()
13
{ }
14
}