repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
test-258.cs
blob
5685b07acfec89ef589aa5d9f280ffea74fbd21c
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
static void
Main
()
22
{ }
23
}
24
}