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

test-374.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4dfc85b82c17d83709c94e62867d90e44b44ceb (plain)
1
2
3
4
5
6
7
8
9
10
internal class Test 
{
	protected internal const int foo = 0;
}
internal class Rest
{
	protected const int foo = Test.foo;

	public static void Main () {}
}