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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-151.cs
blob
ab523eed1548dc2fd277c5923049831f01752635
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
}
16