New test.
[mono.git] / mcs / errors / cs0120-8.cs
1 // cs0120-8.cs: `Test.ArrayList': An object reference is required for the nonstatic field, method or property
2 // Line: 10
3
4 using System.Collections;
5
6 public class Test  {
7         ArrayList ArrayList;
8
9         public static void Main () {
10                 ArrayList.Capacity = 5;
11         }
12 }