Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

22 lines
339 B
C#

//
// Compile test for referencing types on nested types
//
using System;
public class outer {
public class inner {
public void meth(Object o) {
inner inst = (inner)o;
}
}
public static int Main ()
{
// We only test that this compiles.
return 0;
}
}