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
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
gcs0146.cs
blob
4c64ef6e73222595ccd0b59ea24645e333fc9fb5
1
// gcs0146.cs: Circular base class dependency involving `B<T>' and `A<T>'
2
// Line: 8
3
4
class
A
<
T
> :
B
<
int
>
5
{
6
}
7
8
class
B
<
T
> :
A
<
float
>
9
{ }
10
11
class
X
12
{
13
static void
Main
()
14
{ }
15
}