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-886.cs
blob
1061355a01f1a118e6facc6c6326265615c26033
1
public class
A
2
{
3
public static
A
Get
()
4
{
5
return null
;
6
}
7
}
8
9
public class
Test
10
{
11
void
M
()
12
{
13
A A
=
A
.
Get
();
14
}
15
16
public static void
Main
()
17
{
18
var
t
=
new
Test
();
19
t
.
M
();
20
}
21
}