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
Compiling script v0.0.1 (/Users/nox/src/servo/components/script)
error[E0412]: cannot find type `Inert` in this scope
--> components/script/dom/bindings/root.rs:642:26
|
642 | type Output = Option<Inert<Dom<T>>>;
| ^^^^^
help: a crate with a similar name exists
|
642 | type Output = Option<inert<Dom<T>>>;
| ^^^^^
help: possible candidate is found in another module, you can import it into scope
|
27 | use inert::Inert;
|
A crate cannot be a type, so suggesting inert<Dom<T>> is wrong.