summaryrefslogtreecommitdiff
path: root/tests/ui/error-codes/E0277.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/error-codes/E0277.stderr')
-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
|