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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0029-20.cs
blob
8d987c9a962ee1fe84f0fa15fcddb52d3ec24203
1
// CS0029: Cannot implicitly convert type `A<int>.B<long>' to `A<long>.B<long>'
2
// Line: 14
3
4
class
A
<
T
>
5
{
6
public class
B
<
U
>
7
{
8
}
9
}
10
11
class
Test
12
{
13
static
A
<
int
>.
B
<
long
>
a
;
14
static
A
<
long
>.
B
<
long
>
b
=
a
;
15
}