diff options
| author | Michael Goulet <michael@errs.io> | 2022-09-03 03:46:41 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2022-09-05 20:55:43 +0000 |
| commit | 1254b324797317a46315ff86395e8a9b43ebcc9b (patch) | |
| tree | 7aad008e394eafa4b6b2fdb2ab50fe0b384414aa /src/test | |
| parent | b44197abb0b3ffe4908892e1e08ab1cd721ff3b9 (diff) | |
| download | rust-1254b324797317a46315ff86395e8a9b43ebcc9b.tar.gz rust-1254b324797317a46315ff86395e8a9b43ebcc9b.zip | |
Point out when a callable is not actually callable because its return is not sized
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/ui/issues/issue-41139.stderr | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test/ui/issues/issue-41139.stderr b/src/test/ui/issues/issue-41139.stderr index 48b22bca20f..97492e6e0fa 100644 --- a/src/test/ui/issues/issue-41139.stderr +++ b/src/test/ui/issues/issue-41139.stderr @@ -5,9 +5,7 @@ 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 + | ^^^^^^^^^^^^^^ this trait object returns an unsized value `(dyn Trait + 'static)`, so it cannot be called error: aborting due to previous error |
