summaryrefslogtreecommitdiffstats
path: root/tests/ui/unique-object-noncopyable.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/unique-object-noncopyable.stderr (renamed from src/test/ui/unique-object-noncopyable.stderr)8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/test/ui/unique-object-noncopyable.stderr b/tests/ui/unique-object-noncopyable.stderr
index 98a9bd07e..db42ed9ba 100644
--- a/src/test/ui/unique-object-noncopyable.stderr
+++ b/tests/ui/unique-object-noncopyable.stderr
@@ -9,14 +9,10 @@ LL | trait Foo {
...
LL | let _z = y.clone();
| ^^^^^ method cannot be called on `Box<dyn Foo>` due to unsatisfied trait bounds
- |
+ --> $SRC_DIR/alloc/src/boxed.rs:LL:COL
::: $SRC_DIR/alloc/src/boxed.rs:LL:COL
|
-LL | / pub struct Box<
-LL | | T: ?Sized,
-LL | | #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global,
-LL | | >(Unique<T>, A);
- | |_- doesn't satisfy `Box<dyn Foo>: Clone`
+ = note: doesn't satisfy `Box<dyn Foo>: Clone`
|
= note: the following trait bounds were not satisfied:
`dyn Foo: Sized`