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

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

	public int Foo { get { return 1; } }

	public class C {
		public void Baz ()
		{
			int x = Foo;
		}
	}
}