dlr bug
[mcs.git] / tests / test-72.cs
blob06d1cee18f9cb7287b4b9ad2297e2406b0984fd6
1 //
2 // Compile test for referencing types on nested types
3 //
5 using System;
7 public class outer {
8 public class inner {
9 public void meth(Object o) {
10 inner inst = (inner)o;
14 static int Main ()
16 // We only test that this compiles.
18 return 0;