[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-72.cs
blob9764369318e18302c9bb64298e7f4075e1958483
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 public static int Main ()
16 // We only test that this compiles.
18 return 0;