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
We never do anything withthe user type annotation mentioning 'a as its in dead code, so we end up with opaque<'a, 'b> = &'unconstrained u32 in the storage. The member constraint 'unconstrained member ['a, 'b, 'static] just picks 'static at this point as it's the smallest region related to all other choice regions.
This should be moved as an issue to the rust-lang/rust repo once this behavior is happening on stable
The text was updated successfully, but these errors were encountered:
after rust-lang/rust#138785:
results in
We never do anything withthe user type annotation mentioning
'a
as its in dead code, so we end up withopaque<'a, 'b> = &'unconstrained u32
in the storage. The member constraint'unconstrained member ['a, 'b, 'static]
just picks'static
at this point as it's the smallest region related to all other choice regions.This should be moved as an issue to the rust-lang/rust repo once this behavior is happening on stable
The text was updated successfully, but these errors were encountered: