about summary refs log tree commit diff
path: root/tests/ui/error-codes
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2023-05-03 19:27:29 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2023-05-03 20:09:10 +0300
commit6f6c379ee065d65fb8121db46bf5b0fbcdcb905c (patch)
tree71b39efda51aed1c40f2776a0556b55ba03cc05e /tests/ui/error-codes
parent82cd953c7c43e64dae6f705ce2f07b291f0e22e3 (diff)
downloadrust-6f6c379ee065d65fb8121db46bf5b0fbcdcb905c.tar.gz
rust-6f6c379ee065d65fb8121db46bf5b0fbcdcb905c.zip
rustc_middle: Fix `opt_item_ident` for non-local def ids
Diffstat (limited to 'tests/ui/error-codes')
-rw-r--r--tests/ui/error-codes/E0277.stderr3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ui/error-codes/E0277.stderr b/tests/ui/error-codes/E0277.stderr
index 2b4784d7ecc..440e43dff81 100644
--- a/tests/ui/error-codes/E0277.stderr
+++ b/tests/ui/error-codes/E0277.stderr
@@ -5,7 +5,8 @@ LL | fn f(p: Path) { }
    |      ^ doesn't have a size known at compile-time
    |
    = help: within `Path`, the trait `Sized` is not implemented for `[u8]`
-   = note: required because it appears within the type `Path`
+note: required because it appears within the type `Path`
+  --> $SRC_DIR/std/src/path.rs:LL:COL
    = help: unsized fn params are gated as an unstable feature
 help: function arguments must have a statically known size, borrowed types always have a known size
    |