Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-72.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06d1cee18f9cb7287b4b9ad2297e2406b0984fd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// 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;
                }
        }
	
	static int Main ()
	{
		// We only test that this compiles.
		
		return 0;
	}
  }