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-159.cs
blob
d3d9f101014f960849eae37b52c3543bedcbe1ed
1
using
System
;
2
namespace
A
{
3
public class
Iface
{
4
void
bah
() {}
5
}
6
class
my
{
7
A
.
Iface b
;
8
void
doit
(
Object A
) {
9
b
= (
A
.
Iface
)
A
;
10
}
11
public static int
Main
() {
12
return
0
;
13
}
14
}
15
}