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
/
test-anon-142.cs
blob
0f2040d26e32b71b61aae36295b1978d57670421
1
using
System
;
2
3
public class
Test
4
{
5
delegate void
D
();
6
7
public static int
Main
()
8
{
9
new
Test
().
Test_3
<
int
> ();
10
return
0
;
11
}
12
13
public void
Test_3
<
T
> ()
where T
:
struct
14
{
15
D d
=
delegate
() {
16
T
?
tt
=
null
;
17
};
18
d
();
19
}
20
}