summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/trait-upcasting/invalid-upcast.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/traits/trait-upcasting/invalid-upcast.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/traits/trait-upcasting/invalid-upcast.stderr')
-rw-r--r--src/test/ui/traits/trait-upcasting/invalid-upcast.stderr168
1 files changed, 0 insertions, 168 deletions
diff --git a/src/test/ui/traits/trait-upcasting/invalid-upcast.stderr b/src/test/ui/traits/trait-upcasting/invalid-upcast.stderr
deleted file mode 100644
index 3aa21ee3d..000000000
--- a/src/test/ui/traits/trait-upcasting/invalid-upcast.stderr
+++ /dev/null
@@ -1,168 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:53:35
- |
-LL | let _: &dyn std::fmt::Debug = baz;
- | -------------------- ^^^ expected trait `Debug`, found trait `Baz`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Debug`
- found reference `&dyn Baz`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:55:24
- |
-LL | let _: &dyn Send = baz;
- | --------- ^^^ expected trait `Send`, found trait `Baz`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Send`
- found reference `&dyn Baz`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:57:24
- |
-LL | let _: &dyn Sync = baz;
- | --------- ^^^ expected trait `Sync`, found trait `Baz`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Sync`
- found reference `&dyn Baz`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:60:25
- |
-LL | let bar: &dyn Bar = baz;
- | -------- ^^^ expected trait `Bar`, found trait `Baz`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Bar`
- found reference `&dyn Baz`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:62:35
- |
-LL | let _: &dyn std::fmt::Debug = bar;
- | -------------------- ^^^ expected trait `Debug`, found trait `Bar`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Debug`
- found reference `&dyn Bar`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:64:24
- |
-LL | let _: &dyn Send = bar;
- | --------- ^^^ expected trait `Send`, found trait `Bar`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Send`
- found reference `&dyn Bar`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:66:24
- |
-LL | let _: &dyn Sync = bar;
- | --------- ^^^ expected trait `Sync`, found trait `Bar`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Sync`
- found reference `&dyn Bar`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:69:25
- |
-LL | let foo: &dyn Foo = baz;
- | -------- ^^^ expected trait `Foo`, found trait `Baz`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Foo`
- found reference `&dyn Baz`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:71:35
- |
-LL | let _: &dyn std::fmt::Debug = foo;
- | -------------------- ^^^ expected trait `Debug`, found trait `Foo`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Debug`
- found reference `&dyn Foo`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:73:24
- |
-LL | let _: &dyn Send = foo;
- | --------- ^^^ expected trait `Send`, found trait `Foo`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Send`
- found reference `&dyn Foo`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:75:24
- |
-LL | let _: &dyn Sync = foo;
- | --------- ^^^ expected trait `Sync`, found trait `Foo`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Sync`
- found reference `&dyn Foo`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:78:25
- |
-LL | let foo: &dyn Foo = bar;
- | -------- ^^^ expected trait `Foo`, found trait `Bar`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Foo`
- found reference `&dyn Bar`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:80:35
- |
-LL | let _: &dyn std::fmt::Debug = foo;
- | -------------------- ^^^ expected trait `Debug`, found trait `Foo`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Debug`
- found reference `&dyn Foo`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:82:24
- |
-LL | let _: &dyn Send = foo;
- | --------- ^^^ expected trait `Send`, found trait `Foo`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Send`
- found reference `&dyn Foo`
-
-error[E0308]: mismatched types
- --> $DIR/invalid-upcast.rs:84:24
- |
-LL | let _: &dyn Sync = foo;
- | --------- ^^^ expected trait `Sync`, found trait `Foo`
- | |
- | expected due to this
- |
- = note: expected reference `&dyn Sync`
- found reference `&dyn Foo`
-
-error: aborting due to 15 previous errors
-
-For more information about this error, try `rustc --explain E0308`.