summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/bad-assoc-expr.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/did_you_mean/bad-assoc-expr.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/did_you_mean/bad-assoc-expr.stderr')
-rw-r--r--src/test/ui/did_you_mean/bad-assoc-expr.stderr61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/test/ui/did_you_mean/bad-assoc-expr.stderr b/src/test/ui/did_you_mean/bad-assoc-expr.stderr
deleted file mode 100644
index c295cac9a..000000000
--- a/src/test/ui/did_you_mean/bad-assoc-expr.stderr
+++ /dev/null
@@ -1,61 +0,0 @@
-error: missing angle brackets in associated item path
- --> $DIR/bad-assoc-expr.rs:3:5
- |
-LL | [i32; 4]::clone(&a);
- | ^^^^^^^^^^^^^^^ help: try: `<[i32; 4]>::clone`
-
-error: missing angle brackets in associated item path
- --> $DIR/bad-assoc-expr.rs:6:5
- |
-LL | [i32]::as_ref(&a);
- | ^^^^^^^^^^^^^ help: try: `<[i32]>::as_ref`
-
-error: missing angle brackets in associated item path
- --> $DIR/bad-assoc-expr.rs:9:5
- |
-LL | (u8)::clone(&0);
- | ^^^^^^^^^^^ help: try: `<(u8)>::clone`
-
-error: missing angle brackets in associated item path
- --> $DIR/bad-assoc-expr.rs:12:5
- |
-LL | (u8, u8)::clone(&(0, 0));
- | ^^^^^^^^^^^^^^^ help: try: `<(u8, u8)>::clone`
-
-error: missing angle brackets in associated item path
- --> $DIR/bad-assoc-expr.rs:15:6
- |
-LL | &(u8)::clone(&0);
- | ^^^^^^^^^^^ help: try: `<(u8)>::clone`
-
-error: missing angle brackets in associated item path
- --> $DIR/bad-assoc-expr.rs:18:10
- |
-LL | 10 + (u8)::clone(&0);
- | ^^^^^^^^^^^ help: try: `<(u8)>::clone`
-
-error: missing angle brackets in associated item path
- --> $DIR/bad-assoc-expr.rs:32:13
- |
-LL | let _ = ty!()::clone(&0);
- | ^^^^^^^^^^^^ help: try: `<ty!()>::clone`
-
-error: missing angle brackets in associated item path
- --> $DIR/bad-assoc-expr.rs:34:5
- |
-LL | ty!()::clone(&0);
- | ^^^^^^^^^^^^ help: try: `<ty!()>::clone`
-
-error: missing angle brackets in associated item path
- --> $DIR/bad-assoc-expr.rs:23:19
- |
-LL | ($ty: ty) => ($ty::clone(&0))
- | ^^^^^^^^^^ help: try: `<$ty>::clone`
-...
-LL | expr!(u8);
- | --------- in this macro invocation
- |
- = note: this error originates in the macro `expr` (in Nightly builds, run with -Z macro-backtrace for more info)
-
-error: aborting due to 9 previous errors
-