* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs0120-8.cs
blob0f6178a28b5c6c207d2f201b3c7c065c1102f106
1 // cs0120-8.cs: `Test.ArrayList': An object reference is required for the nonstatic field, method or property
2 // Line: 10
4 using System.Collections;
6 public class Test {
7 ArrayList ArrayList;
9 public static void Main () {
10 ArrayList.Capacity = 5;