* ExternTable.cs (ExternTable.GetModuleTypeRef): 'module_table' can be
[mcs.git] / errors / cs0120-8.cs
blobdcfff66fe2d1df44537d3f757d16b7166600d4ce
1 // cs0120-8.cs: `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;