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

bug11.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b48bc1893f7d6a1b4871bf791bceae2659ff16d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// fixed
//
class Location {
	static public int Null {
		get {
			return 1;
		}
	}
}

class X {
	Location Location;
	X ()
	{
		int a = Location.Null;
	}

	static void Main () {}
}