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
[tuner] handle the case with multiple "preserve" attributes
[mono-project.git]
/
mcs
/
tests
/
test-765.cs
blob
7fe77912fcd52bde0b98791a3fca8c9b745e469c
1
using
System
;
2
3
class
B
:
A
4
{
5
public static void
Foo
(
int
i
)
6
{
7
}
8
}
9
10
class
A
11
{
12
public static void
Foo
(
string
s
)
13
{
14
}
15
}
16
17
18
public static class
Test
19
{
20
public static void
Main
()
21
{
22
B
.
Foo
(
"a"
);
23
}
24
}