Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-initialize-04.cs
1
2
3 using System;
4 using System.Collections.Generic;
5
6 public class C
7 {
8         static readonly List<int> values = new List<int> { 1, 2, 3 };
9         
10         public static int Main ()
11         {
12                 if (values.Count != 3)
13                         return 1;
14                 
15                 Console.WriteLine ("OK");
16                 return 0;
17         }
18 }