merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[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 }