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

test-799.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f0e60dd7307a2e897c5e30ffc680ab4dccbb5e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;

public class Test2
{
	protected internal class Foo
	{
	}

	private class Bar
	{
		public Bar (Test2.Foo baseArg4)
		{
		}
	}
	public static int Main ()
	{
		new Bar (new Foo ());
		return 0;
	}
}