We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e380946 commit 1205592Copy full SHA for 1205592
src/tests/JIT/Directed/tailcall/more_tailcalls.cs
@@ -10,6 +10,7 @@
10
using System.Diagnostics;
11
using System.Reflection;
12
using System.Runtime.CompilerServices;
13
+using Xunit;
14
15
struct S16
16
{
@@ -48,7 +49,7 @@ class HeapInt
48
49
public override string ToString() => $"{Value}";
50
}
51
-internal class Program
52
+public class Program
53
54
private static readonly IntPtr s_calcStaticCalli;
55
private static readonly IntPtr s_calcStaticCalliOther;
@@ -84,7 +85,8 @@ static Program()
84
85
s_instanceMethodOnValueType = instanceMethodOnValueType;
86
87
- private static int Main()
88
+ [Fact]
89
+ public static int Main()
90
91
const int numCalcIters = 1000000;
92
const int countUpIters = 1000000;
0 commit comments