Disable none-working stack overflow implementation on Windows x64 full AOT.
[mono.git] / mcs / tests / gtest-exmethod-11.cs
1
2
3 using System;
4
5 public class Test
6 {
7         public static int Main (String [] args)
8         {
9                 if (1.OneEleven ())
10                         return 0;
11
12                 return 1;
13         }
14 }
15
16 public static class Lol
17 {
18         public static bool OneEleven (this object o)
19         {
20                 return true;
21         }
22 }