Created based on an Antigen found example.
usingSystem.Runtime.CompilerServices;usingSystem.Runtime.Intrinsics;usingSystem.Numerics;publicclassProgram{publicstaticvoidMain(){Foo(default,default);}[MethodImpl(MethodImplOptions.NoInlining)]privatestaticVector2Foo(Vector128<float>v1,Vector128<float>v2){returnVector2.Lerp(default,default,Vector128.Dot(v1,v2));}}Assert failure(PID44604 [0x0000ae3c], Thread:48752 [0xbe70]):Assertion failed 'm_store->TypeGet() == m_src->TypeGet()' in 'TestClass:Foo(System.Runtime.Intrinsics.Vector128`1[float],System.Runtime.Intrinsics.Vector128`1[float]):System.Numerics.Vector2' during 'Morph-Global' (IL size 31; hash 0xa3f337c0; FullOpts)File:C:\dev\dotnet\runtime4\src\coreclr\jit\morphblock.cpp Line:671Image:C:\dev\dotnet\runtime4\artifacts\tests\coreclr\windows.x64.Checked\Tests\Core_Root\corerun.exe
Created based on an Antigen found example.