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-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs0146.cs
blob
0a164dba475cb59a02bc1e9f4d05f230203c3878
1
// CS0146: Circular base class dependency involving `B<T>' and `A<float>'
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
}