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.
The text was updated successfully, but these errors were encountered:
filter suggestions from extern prelude
Fixes#59027.
Modifies the candidate gathering code to call `filter_fn` on extern crates, which causes them to be filtered out when looking for a type.
A crate cannot be a type, so suggesting
inert<Dom<T>>
is wrong.The text was updated successfully, but these errors were encountered: