a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
22 lines
339 B
C#
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;
|
|
}
|
|
}
|
|
|