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

bug18.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61e0f0af006dde4658977f502d2c3cf90b1a69be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace A {
	interface B {
	}
}

class X {
	static void A (object A)
	{
		object x = (A.B) A;
	}

	static void Main ()
	{
	}
}