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:
parent
0e8db73b8d
commit
1337553ef2
2 changed files with 3 additions and 3 deletions
|
@ -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)]
|
||||
|
|
|
@ -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" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue