summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/trait-bounds-cant-coerce.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/mismatched_types/trait-bounds-cant-coerce.stderr')
-rw-r--r--src/test/ui/mismatched_types/trait-bounds-cant-coerce.stderr19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/mismatched_types/trait-bounds-cant-coerce.stderr b/src/test/ui/mismatched_types/trait-bounds-cant-coerce.stderr
deleted file mode 100644
index 80aef7fcb..000000000
--- a/src/test/ui/mismatched_types/trait-bounds-cant-coerce.stderr
+++ /dev/null
@@ -1,19 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/trait-bounds-cant-coerce.rs:13:7
- |
-LL | a(x);
- | - ^ expected trait `Foo + Send`, found trait `Foo`
- | |
- | arguments to this function are incorrect
- |
- = note: expected struct `Box<(dyn Foo + Send + 'static)>`
- found struct `Box<(dyn Foo + 'static)>`
-note: function defined here
- --> $DIR/trait-bounds-cant-coerce.rs:5:4
- |
-LL | fn a(_x: Box<dyn Foo + Send>) {
- | ^ -----------------------
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0308`.