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-009.cs
blob
8fcb4fcddcad9b91d97777d1ca5be67904403846
1
partial class
B
2
{
3
static partial void
Test
(
int
a
);
4
5
static partial void
Test
(
int
x
)
6
{
7
}
8
9
public static int
Main
()
10
{
11
Test
(
a
:
5
);
12
13
dynamic
d
= -
1
;
14
Test
(
a
:
d
);
15
16
return
0
;
17
}
18
}