Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-422.cs
1 using System;
2
3 namespace HelloWorld {
4     public class MainClass {
5         private static readonly bool _trueThat = _trueThat = CheckTrueThat();
6
7         public static void Main(string[] args)
8         {
9         }
10
11         static bool CheckTrueThat()
12         {
13             return true;
14         }
15     }
16 }