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: 9764369318e18302c9bb64298e7f4075e1958483 (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;
                }
        }
	
	public static int Main ()
	{
		// We only test that this compiles.
		
		return 0;
	}
  }