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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
tests
/
test-72.cs
blob
06d1cee18f9cb7287b4b9ad2297e2406b0984fd6
1
//
2
// Compile test for referencing types on nested types
3
//
4
5
using
System
;
6
7
public class
outer
{
8
public class
inner
{
9
public void
meth
(
Object o
) {
10
inner inst
= (
inner
)
o
;
11
}
12
}
13
14
static int
Main
()
15
{
16
// We only test that this compiles.
17
18
return
0
;
19
}
20
}
21