You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://github.com/rust-lang/rust/pull/89075/files#r711626103 notes that our migrations suggested adding a let _ = &config; here. However, I would've expected that to not happen, because config is not a type with significant destructors (as far as I can tell). Maybe there's a bug here?
config has type LangString, which only contains Vec<String>, but I would expect that type to not trigger our migration tooling as it has trivial dtors.
cc @rust-lang/wg-rfc-2229
The text was updated successfully, but these errors were encountered:
Based on Zulip discussion it sounds like this is caused by not yet adding the insignificant dtor attributes to std, and @arora-aman is going to work on a PR to do that. We may consider backporting that.
https://github.com/rust-lang/rust/pull/89075/files#r711626103 notes that our migrations suggested adding a
let _ = &config;
here. However, I would've expected that to not happen, because config is not a type with significant destructors (as far as I can tell). Maybe there's a bug here?config has type LangString, which only contains
Vec<String>
, but I would expect that type to not trigger our migration tooling as it has trivial dtors.cc @rust-lang/wg-rfc-2229
The text was updated successfully, but these errors were encountered: