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-561.cs
blob
15145381aae1f0c5a617c0b3604c413f83e3b2b6
1
abstract class
A
:
I
2
{
3
protected abstract void
M
();
4
5
void
I
.
M
()
6
{
7
}
8
}
9
10
interface
I
11
{
12
void
M
();
13
}
14
15
class
C
:
A
,
I
16
{
17
protected override void
M
()
18
{
19
}
20
21
public static void
Main
()
22
{
23
}
24
}