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

bug6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9cbf071393dd63d69ad468bc786b7ac42f737ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// fixed
//
public class X {

	public enum Blah { A }

}

public class Y : X {

	Blah x;
	
}