repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-10-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-627.cs
blob
22e9802759394ca65d22f2fd0da858cbba371a52
1
using
System
;
2
3
interface
A
{
4
void
B
();
5
}
6
7
interface
X
{
8
void
B
();
9
}
10
11
12
class
B
:
A
,
X
{
13
void
X
.
B
() {}
14
void
A
.
B
() {}
15
16
}
17
18
namespace
N
{
19
interface
B
{
20
}
21
}
22
23
class
M
{
24
static void
N
(
object
N
)
25
{
26
object
x
= (
N
.
B
)
N
;
27
}
28
29
static void
Main
()
30
{
31
}
32
}
33