Kalle Wachsmuth
Kalle Wachsmuth
Currently, the file `crates/jit/src/unwind/winx32.rs` serves no purpose. In #3180 the other two unwind implementations (`winx64.rs` and `systemv.rs`) were rewritten, but the stub in `winx32.rs` was left unchanged. This means that...
### Description `mem_forget` [currently only triggers][code] if the type passed to `mem::forget` implements `Drop`. However, if a type doesn't implement `Drop`, then that doesn't mean it lacks destructor code. For...
The reason why `Drop` is a trait is because adding a `drop` method to a type is similar to implementing a trait on it. Other than that, `Drop` does not...
I don't know why but `echo -n` didn't work for me. macOS supports the `-n` option but it doesn't work in the makefile. What it does instead is it literally...
### Problem you are trying to solve I ran `rustup component list --installed` and saw that I had the component `rust-std-wasm32-unknown-unknown` installed, which I wanted to delete. I thought that...
Running `cargo +nightly miri test --message-format short` results in an internal `cargo-miri` panic. Example `lib.rs`: ````rust //! ``` //! assert_eq!(1 + 1, 2); //! ``` ```` Output ``` Preparing a...
#5400 isn't making progress, so here's one of the commits split out. `into_…` is supposed to be used by functions that consume `self`, however `into_overflowable_item` borrows `self`.