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

gtest-441.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5e1904199d06cc35d34f49e6ada86b15f954ff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System.Collections.Generic;

namespace Name
{
	public class Test
	{
		internal static List<int> List;
	}

	public class Subclass : Test
	{
		private List<int> list;

		public List<int> List
		{
			get { return list; }
		}

		public static void Main (string[] args)
		{
			Subclass c = new Subclass ();
		}
	}
}