Levi Morrison
Levi Morrison
Looks good to me as a total outsider. @emilio, are you the right person to ping these days? You have the most commits last year.
Consider code like this: ```rs struct BorrowedStringTable, } #[self_referencing] struct StringTableCell { owner: bumpalo::Bump, #[borrows(owner)] #[covariant] dependent: BorrowedStringTable
This is not viable for me\*. I need to do more work than was posted here after the resets have occurred, so I can't use an empty arena. This means...
Interestingly, the miri failure is in std: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=92348df8e81c457c63c78c0845bf9e3b. ```rs fn main() { match 2u64.checked_pow(64) { Some(n) => println!("2^64: {n}"), None => {} }; } ``` Given this is a `checked_*`...
I opened an issue: https://github.com/rust-lang/rust/issues/120537.
I merged in master, and Miri looks good now 👍🏻
Re-analyzing this, I made a mistake previously: the jumps are actually quite predictable. With this in mind, I would expect this PR to be a slight regression (since it isn't...
Superseded by #2668.
> The h1 function is used for indexing and I think it doesn’t matter that it overlaps with h2. On x64 h1 simply returns provided value (u64). Yes, because only...
This is how I set this up now: ```sh composer create-project symfony/symfony-demo==2.5.1 symfony-demo echo "APP_ENV=prod" > symfony-demo/.env.local cd symfony-demo composer install php bin/console asset-map:compile ``` Hopefully that helps someone. the...