summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-41139.stderr
blob: 48b22bca20f067444040cd73b4c487343e31e8ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0618]: expected function, found `&dyn Fn() -> (dyn Trait + 'static)`
  --> $DIR/issue-41139.rs:10:26
   |
LL | fn get_function<'a>() -> &'a dyn Fn() -> dyn Trait {
   | -------------------------------------------------- `get_function` defined here returns `&dyn Fn() -> (dyn Trait + 'static)`
...
LL |     let t: &dyn Trait = &get_function()();
   |                          ^^^^^^^^^^^^^^--
   |                          |
   |                          call expression requires function

error: aborting due to previous error

For more information about this error, try `rustc --explain E0618`.