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
Checking rustdoc v0.0.0 (/home/joshua/rustc2/src/librustdoc)
error[E0609]: no field `inner` on type `&types::Item`
--> src/librustdoc/html/render/mod.rs:3100:25
|
3100 | match v.inner {
| ^^^^^ unknown field
|
= note: available fields are: `source`, `name`, `attrs`, `kind`, `visibility` ... and 3 others
error[E0609]: no field `inner` on type `&types::Item`
--> src/librustdoc/html/render/mod.rs:3150:58
|
3150 | if let clean::VariantItem(ref var) = variant.inner {
| ^^^^^ unknown field
|
= note: available fields are: `source`, `name`, `attrs`, `kind`, `visibility` ... and 3 others
error[E0609]: no field `inner` on type `&types::Item`
--> src/librustdoc/html/render/mod.rs:3182:60
|
3182 | if let StructFieldItem(ref ty) = field.inner {
| ^^^^^ unknown field
|
= note: available fields are: `source`, `name`, `attrs`, `kind`, `visibility` ... and 3 others
error[E0609]: no field `inner` on type `&types::Item`
--> src/librustdoc/html/render/mod.rs:3592:70
|
3592 | if let clean::TypedefItem(ref tydef, _) = it.inner {
| ^^^^^ unknown field
|
= note: available fields are: `source`, `name`, `attrs`, `kind`, `visibility` ... and 3 others
error[E0609]: no field `inner` on type `&types::Item`
--> src/librustdoc/html/render/mod.rs:4183:80
|
4183 | impl_.inner_impl().items.iter().find_map(|item| match item.inner {
| ^^^^^ unknown field
|
= note: available fields are: `source`, `name`, `attrs`, `kind`, `visibility` ... and 3 others
error[E0609]: no field `inner` on type `types::Item`
--> src/librustdoc/passes/collect_intra_doc_links.rs:691:78
|
691 | ... trace!("considering associated item {:?}", assoc.inner);
| ^^^^^ unknown field
|
= note: available fields are: `source`, `name`, `attrs`, `kind`, `visibility` ... and 3 others
error: aborting due to 6 previous errors
For more information about this error, try `rustc --explain E0609`.
error: could not compile `rustdoc`
Sorry not to provide an MCVE.
The text was updated successfully, but these errors were encountered:
I don't think there is much to gain from this issue anymore, since the cause was most likely an inference problem which will be fixed(and found again) eventually.
In https://github.com/rust-lang/rust/blob/50d3c2a3cb96b6af2b5e3b9d08578a556ac70ede/src/librustdoc/clean/types.rs#L84, rename
inner
tokind
. Most usages are updated, but not all.Sorry not to provide an MCVE.
The text was updated successfully, but these errors were encountered: