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-258.cs
blob
ff0e78ca2649e23c63bbb7fde282e25c1e728a42
1
using
System
;
2
3
// Without namespace, this error does not happen.
4
namespace
MyTest
5
{
6
public class
Test
7
{
8
public interface
Inner
9
{
10
void
Foo
();
11
}
12
}
13
14
public class
Test2
:
MarshalByRefObject
,
Test
.
Inner
15
{
16
// This is OK: public void Foo ()
17
void
Test
.
Inner
.
Foo
()
18
{
19
}
20
21
public static void
Main
()
22
{ }
23
}
24
}