rust/tests/ui/issues/issue-41139.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
598 B
Plaintext
Raw Normal View History

2020-09-07 17:01:45 +08:00
error[E0618]: expected function, found `&dyn Fn() -> (dyn Trait + 'static)`
--> $DIR/issue-41139.rs:10:26
2018-07-16 05:11:54 +08:00
|
2020-09-07 17:01:45 +08:00
LL | fn get_function<'a>() -> &'a dyn Fn() -> dyn Trait {
| -------------------------------------------------- `get_function` defined here returns `&dyn Fn() -> (dyn Trait + 'static)`
...
2020-09-07 17:01:45 +08:00
LL | let t: &dyn Trait = &get_function()();
| ^^^^^^^^^^^^^^ this trait object returns an unsized value `(dyn Trait + 'static)`, so it cannot be called
2018-07-16 05:11:54 +08:00
error: aborting due to 1 previous error
2018-07-16 05:11:54 +08:00
For more information about this error, try `rustc --explain E0618`.