Closed
Description
type Foo = winnow::Located<&'static str>;
Compiles with 0.6.22, fails with 0.6.23:
error[E0412]: cannot find type `Located` in crate `winnow`
--> src/main.rs:1:20
|
1 | type Foo = winnow::Located<&'static str>;
| ^^^^^^^ not found in `winnow`
|
help: consider importing this type alias
|
1 + use winnow::stream::Located;
|
help: if you import `Located`, refer to it directly
|
1 - type Foo = winnow::Located<&'static str>;
1 + type Foo = Located<&'static str>;
|
Metadata
Assignees
Labels
No labels