Disable none-working stack overflow implementation on Windows x64 full AOT.
[mono.git] / mcs / tests / gtest-linq-24.cs
1 using System;
2 using System.Linq;
3
4 class A
5 {
6         public int Value;
7 }
8
9 class C
10 {
11         A[] Prop {
12                 get {
13                         return new A [1] { new A () };
14                 }
15         }
16         
17         void Test ()
18         {
19                 int i = 9;
20                 var c = new C ();
21                 var r = Prop.Select (l => l.Value).ToArray ();
22         }
23         
24         public static int Main ()
25         {
26                 new C().Test ();
27                 return 0;
28         }
29 }