Disable none-working stack overflow implementation on Windows x64 full AOT.
[mono.git] / mcs / tests / test-918.cs
1 public class Test
2 {
3         Test x;
4
5         void Foo ()
6         {
7                 {
8                         string x = "dd";
9                 }
10
11                 {
12                         x = null;
13                 }
14
15                 x = new Test ();
16         }
17
18         public static void Main () { }
19 }