Merge pull request #5382 from kumpera/pedump_fix
[mono.git] / mono / tests / bug-81691-b.cs
1 namespace NS.B
2 {
3         public class TestB
4         {
5                 private static readonly NS.A.TestA testb = new NS.A.TestA ();
6
7                 public TestB ()
8                 {
9                         if (testb == null) {
10                         }
11                 }
12         }
13 }