eol
[mcs.git] / tests / gtest-initialize-04.cs
blobe78beeef27559f185828667efb4401679fc5f429
3 using System;
4 using System.Collections.Generic;
6 public class C
8 static readonly List<int> values = new List<int> { 1, 2, 3 };
10 public static int Main ()
12 if (values.Count != 3)
13 return 1;
15 Console.WriteLine ("OK");
16 return 0;