rust/tests/ui/impl-trait/issues/issue-58956.rs
2023-10-04 19:51:43 +00:00

15 lines
341 B
Rust

trait Lam {}
pub struct B;
impl Lam for B {}
pub struct Wrap<T>(T);
const _A: impl Lam = {
//~^ `impl Trait` only allowed in function and inherent method argument and return types
let x: Wrap<impl Lam> = Wrap(B);
//~^ `impl Trait` only allowed in function and inherent method argument and return types
x.0
};
fn main() {}