summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/span-preservation.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/proc-macro/span-preservation.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/proc-macro/span-preservation.stderr')
-rw-r--r--src/test/ui/proc-macro/span-preservation.stderr72
1 files changed, 0 insertions, 72 deletions
diff --git a/src/test/ui/proc-macro/span-preservation.stderr b/src/test/ui/proc-macro/span-preservation.stderr
deleted file mode 100644
index 66c68be2f..000000000
--- a/src/test/ui/proc-macro/span-preservation.stderr
+++ /dev/null
@@ -1,72 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/span-preservation.rs:11:20
- |
-LL | let x: usize = "hello";
- | ----- ^^^^^^^ expected `usize`, found `&str`
- | |
- | expected due to this
-
-error[E0308]: mismatched types
- --> $DIR/span-preservation.rs:17:29
- |
-LL | fn b(x: Option<isize>) -> usize {
- | ----- expected `usize` because of return type
-LL | match x {
-LL | Some(x) => { return x },
- | ^ expected `usize`, found `isize`
- |
-help: you can convert an `isize` to a `usize` and panic if the converted value doesn't fit
- |
-LL | Some(x) => { return x.try_into().unwrap() },
- | ++++++++++++++++++++
-
-error[E0308]: mismatched types
- --> $DIR/span-preservation.rs:33:22
- |
-LL | let x = Foo { a: 10isize };
- | ^^^^^^^ expected `usize`, found `isize`
-
-error[E0560]: struct `Foo` has no field named `b`
- --> $DIR/span-preservation.rs:34:26
- |
-LL | let y = Foo { a: 10, b: 10isize };
- | ^ `Foo` does not have this field
- |
- = note: available fields are: `a`
-
-error[E0308]: mismatched types
- --> $DIR/span-preservation.rs:39:5
- |
-LL | extern "C" fn bar() {
- | - help: try adding a return type: `-> i32`
-LL | 0
- | ^ expected `()`, found integer
-
-error[E0308]: mismatched types
- --> $DIR/span-preservation.rs:44:5
- |
-LL | extern "C" fn baz() {
- | - help: try adding a return type: `-> i32`
-LL | 0
- | ^ expected `()`, found integer
-
-error[E0308]: mismatched types
- --> $DIR/span-preservation.rs:49:5
- |
-LL | extern "Rust" fn rust_abi() {
- | - help: try adding a return type: `-> i32`
-LL | 0
- | ^ expected `()`, found integer
-
-error[E0308]: mismatched types
- --> $DIR/span-preservation.rs:54:5
- |
-LL | extern "\x43" fn c_abi_escaped() {
- | - help: try adding a return type: `-> i32`
-LL | 0
- | ^ expected `()`, found integer
-
-error: aborting due to 8 previous errors
-
-Some errors have detailed explanations: E0308, E0560.
-For more information about an error, try `rustc --explain E0308`.