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

cs0038-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d0f1743b6c3d957d9bc4cb2bef40322a1783633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class A {
	public int Foo { get { return 1; } }
}

public class B : A {
	public static void Main ()
	{
	}

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