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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
test-72.cs
blob
9764369318e18302c9bb64298e7f4075e1958483
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
public static int
Main
()
15
{
16
// We only test that this compiles.
17
18
return
0
;
19
}
20
}
21