I got a PR yesterday that included something like this:
/// The tour de force of my career is [`foo.bar()`]
pub mod foo {
pub fn bar() {}
}
In the current nightly rustdoc, foo.bar() neither resolves nor warns:

Our CI with --deny warnings did not catch this mistake (although I did 😄). I think rustdoc should trigger intra-doc-link-resolution-failure for this case.
I got a PR yesterday that included something like this:
In the current nightly rustdoc,
foo.bar()neither resolves nor warns:Our CI with
--deny warningsdid not catch this mistake (although I did 😄). I think rustdoc should triggerintra-doc-link-resolution-failurefor this case.