rust/tests/ui/impl-trait/issues/issue-58956.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
315 B
Rust
Raw Normal View History

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