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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
gtest-558.cs
blob
3db576fde2d9d66047178a253a88be6e54182f23
1
using
System
;
2
3
abstract class
A
<
T
>
4
{
5
public abstract void
Foo
<
U
> (
U arg
)
where U
:
T
;
6
}
7
8
class
B
:
A
<
int
>
9
{
10
public override void
Foo
<
U
> (
U arg
)
11
{
12
ValueType vt
=
arg
;
13
Next
(
arg
);
14
}
15
16
void
Next
<
UU
> (
UU a
)
where UU
:
struct
17
{
18
}
19
20
public static void
Main
()
21
{
22
new
B
().
Foo
(
5
);
23
}
24
}