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
[System] Tweak socket test
[mono-project.git]
/
mono
/
tests
/
generic-unloading-sub.2.cs
blob
453fd2b3a127d38224b28ace4924d0bafba13226
1
using
System
;
2
3
public class
Gen
<
A
,
B
,
C
> {}
4
5
public class
main
{
6
static object
GenericFunc
<
A
,
B
,
C
> () {
7
return new
Gen
<
A
,
B
,
C
> ();
8
}
9
10
static void
DoGenericStuff
() {
11
GenericFunc
<
object
,
object
,
object
> ();
12
}
13
14
public static int
Main
() {
15
DoGenericStuff
();
16
return
0
;
17
}
18
}