Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
impl-trait
/
where-allowed-2.rs
blob: d2e323af6a1a1897ee85a65354f25b0d9fbe89bd [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2015..2021
use
std
::
fmt
::
Debug
;
fn
in_adt_in_return
()
->
Vec
<
impl
Debug
>
{
panic
!()
}
//~^ ERROR type annotations needed
fn
main
()
{}