Disable none-working stack overflow implementation on Windows x64 full AOT.
[mono.git] / mcs / tests / gtest-exmethod-04-lib.cs
1 // Compiler options: -t:library
2
3 using System;
4
5 namespace A
6 {
7         public static class A
8         {
9                 public static string Test_1 (this string s)
10                 {
11                         return ":";
12                 }
13         }
14 }