]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/issue-43924.stderr
Auto merge of #77581 - ecstatic-morse:dataflow-dump-mir-graphviz, r=davidtwco
[rust.git] / src / test / ui / associated-types / issue-43924.stderr
1 error[E0277]: the trait bound `(dyn ToString + 'static): Default` is not satisfied
2   --> $DIR/issue-43924.rs:7:5
3    |
4 LL |     type Out: Default + ToString + ?Sized = dyn ToString;
5    |     ^^^^^^^^^^-------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |     |         |
7    |     |         required by this bound in `Foo::Out`
8    |     the trait `Default` is not implemented for `(dyn ToString + 'static)`
9
10 error[E0599]: no function or associated item named `default` found for trait object `(dyn ToString + 'static)` in the current scope
11   --> $DIR/issue-43924.rs:14:39
12    |
13 LL |     assert_eq!(<() as Foo<u32>>::Out::default().to_string(), "false");
14    |                                       ^^^^^^^ function or associated item not found in `(dyn ToString + 'static)`
15
16 error: aborting due to 2 previous errors
17
18 Some errors have detailed explanations: E0277, E0599.
19 For more information about an error, try `rustc --explain E0277`.