- Incorrectly try compile time int check on vector #2815

- Generating typeid from function gives incorrect typeid #2816
- Recursive definitions not discovered when initializer is access on other const #2817
- Slice overrun detected late hit codegen assert #2822
This commit is contained in:
Christoffer Lerno
2026-01-24 19:38:51 +01:00
parent 397d065a74
commit ce8167a102
11 changed files with 65 additions and 29 deletions

View File

@@ -930,9 +930,9 @@ module std::math::bigint @private;
<*
@param [&out] quotient
@param [&inout] quotient
@param [&in] bi2
@param [&out] remainder
@param [&inout] remainder
*>
fn void BigInt.single_byte_divide(&self, BigInt* bi2, BigInt* quotient, BigInt* remainder)
{
@@ -982,9 +982,9 @@ fn void BigInt.single_byte_divide(&self, BigInt* bi2, BigInt* quotient, BigInt*
}
<*
@param [&out] quotient
@param [&inout] quotient
@param [&in] other
@param [&out] remainder
@param [&inout] remainder
*>
fn void BigInt.multi_byte_divide(&self, BigInt* other, BigInt* quotient, BigInt* remainder)
{