Update dependencies from https://github.com/dotnet/arcade build 20190729.1 (#15881)
[mono-project.git] / mcs / tests / gtest-441.cs
bloba5e1904199d06cc35d34f49e6ada86b15f954ff9
1 using System.Collections.Generic;
3 namespace Name
5 public class Test
7 internal static List<int> List;
10 public class Subclass : Test
12 private List<int> list;
14 public List<int> List
16 get { return list; }
19 public static void Main (string[] args)
21 Subclass c = new Subclass ();