1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-09 17:44:48 +09:00

JIT: Fix assignment for test 105484 (#105834)

* Fix assignment

* fix no-warn
This commit is contained in:
Will Smith 2024-08-01 13:18:33 -07:00 committed by GitHub
parent 0e8db73b8d
commit 1337553ef2
Signed by: github
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -16,8 +16,8 @@ using Xunit;
public class Runtime_105484
{
private static byte[] s_1;
private static byte[,, ] s_2;
private static byte[] s_1 = new byte[1];
private static byte[,, ] s_2 = new byte[1, 1, 1];
private static Vector<uint> s_5;
[MethodImpl(MethodImplOptions.NoInlining)]

View file

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Optimize>True</Optimize>
<NoWarn>SYSLIB5003</NoWarn>
<NoWarn>$(NoWarn);SYSLIB5003</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />