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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
dtest-047.cs
blob
07cd35cc75e3c1f83666d272253652d1d002d21e
1
using
System
;
2
3
class
C
<
T
>
4
{
5
public event
Func
<
int
,
int
>
E
=
l
=>
l
+
9
;
6
7
public static int
Test
(
int
arg
)
8
{
9
dynamic
c
=
new
C
<
T
> ();
10
return
c
.
E
(
arg
);
11
}
12
}
13
14
public class
Test
15
{
16
public static int
Main
()
17
{
18
if
(
C
<
int
>.
Test
(
5
) !=
14
)
19
return
1
;
20
21
return
0
;
22
}
23
}