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
error[E0716]: temporary value dropped while borrowed
--> src\util.rs:33:10
|
32 | let style = StyleSheet::parse(
| _________________-
33 | | &style.into_owned(),
| | ^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
34 | | ParserOptions::default(),
35 | | )?;
| | - - temporary value is freed at the end of this statement
| |_____|
| argument requires that borrow lasts for `'static`
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
im trying to minify css from tailwind with lightningcss but im having issues with lifetime.
Beta Was this translation helpful? Give feedback.
All reactions