summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.cs32
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.csproj17
2 files changed, 49 insertions, 0 deletions
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.cs b/tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.cs
new file mode 100644
index 0000000000..89d54315e8
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.cs
@@ -0,0 +1,32 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
+using System.Reflection;
+using System.Reflection.Emit;
+
+namespace GitHub_25020
+{
+ class Program
+ {
+ static int Main(string[] args)
+ {
+ DynamicMethod dm = new DynamicMethod("MyMethod", typeof(string), new Type[] { typeof(string), typeof(string) });
+
+ ILGenerator generator = dm.GetILGenerator();
+ generator.Emit(OpCodes.Ldarg_0);
+ generator.Emit(OpCodes.Ldarg_1);
+ generator.Emit(OpCodes.Tailcall);
+ generator.EmitCall(OpCodes.Call, typeof(String).GetMethod("Concat", new Type[] { typeof(string), typeof(string) }), null);
+ generator.Emit(OpCodes.Ret);
+
+ string a = "1234";
+ string b = "abcd";
+
+ Console.WriteLine(dm.Invoke(null, BindingFlags.Default, null, new object[] {a, b}, null));
+
+ return 100;
+ }
+ }
+} \ No newline at end of file
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.csproj b/tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.csproj
new file mode 100644
index 0000000000..c24f74b865
--- /dev/null
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_25020/GitHub_25020.csproj
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <AssemblyName>$(MSBuildProjectName)</AssemblyName>
+ <OutputType>Exe</OutputType>
+ <DebugType></DebugType>
+ <Optimize>True</Optimize>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="$(MSBuildProjectName).cs" />
+ </ItemGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+ <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' "></PropertyGroup>
+</Project>