]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/where-allowed-2.rs
Merge commit 'f2cdd4a78d89c009342197cf5844a21f8aa813df' into sync_cg_clif-2022-04-22
[rust.git] / src / test / ui / impl-trait / where-allowed-2.rs
1 use std::fmt::Debug;
2
3 // check-pass
4
5 fn in_adt_in_return() -> Vec<impl Debug> { panic!() }
6
7 fn main() {}