diff options
| author | Joshua Nelson <jyn514@gmail.com> | 2020-09-20 02:18:09 -0400 |
|---|---|---|
| committer | Joshua Nelson <jyn514@gmail.com> | 2020-09-23 21:04:22 -0400 |
| commit | 472e52e5a03790becdbe21be1002a90dd2d7d3d4 (patch) | |
| tree | 836bf03336a1fe86d4654436a36231253163b6da /src/test/rustdoc-ui | |
| parent | dd7b8c85a6a2bffb2cce1c40ba72680a1d7be93b (diff) | |
| download | rust-472e52e5a03790becdbe21be1002a90dd2d7d3d4.tar.gz rust-472e52e5a03790becdbe21be1002a90dd2d7d3d4.zip | |
Fix intra-doc links for primitives
- Add `PrimTy::name` and `PrimTy::name_str` - Use those new functions to distinguish between the name in scope and the canonical name - Fix diagnostics for primitive types - Add tests for primitives
Diffstat (limited to 'src/test/rustdoc-ui')
| -rw-r--r-- | src/test/rustdoc-ui/intra-link-errors.stderr | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/test/rustdoc-ui/intra-link-errors.stderr b/src/test/rustdoc-ui/intra-link-errors.stderr index cd06ee6f798..fab8c105a49 100644 --- a/src/test/rustdoc-ui/intra-link-errors.stderr +++ b/src/test/rustdoc-ui/intra-link-errors.stderr @@ -80,10 +80,7 @@ error: unresolved link to `u8::not_found` --> $DIR/intra-link-errors.rs:55:6 | LL | /// [u8::not_found] - | ^^^^^^^^^^^^^ - | | - | the builtin type `u8` does not have an associated item named `not_found` - | the builtin type `u8` has no builtin type named `not_found` + | ^^^^^^^^^^^^^ the builtin type `u8` does not have an associated item named `not_found` error: unresolved link to `S` --> $DIR/intra-link-errors.rs:59:6 |
