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
/
test-718.cs
blob
cf70d3b2732b61aca0216b1c7412c6fcc8f82d9c
1
using
System
;
2
3
class
A
4
{
5
public static void
Foo
(
int
x
,
int
y
)
6
{
7
}
8
}
9
10
sealed class
B
:
A
11
{
12
public static void
Main
()
13
{
14
Foo
(
1
,
2
);
15
}
16
17
void
Foo
(
int
i
)
18
{
19
}
20
}