summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/existential_type.rs
blob: ffc206875b5901eb16bfb90f6d26832afabd65fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Opaque type.

#![feature(type_alias_impl_trait)]

pub type Adder<F, T>
where
    T: Clone,
    F: Copy,
= impl Fn(T) -> T;

pub type Adderrr<T> = impl Fn(T) -> T;

impl Foo for Bar {
    type E = impl Trait;
}

pub type Adder_without_impl<F, T>
where
    T: Clone,
    F: Copy,
= Fn(T) -> T;

pub type Adderrr_without_impl<T> = Fn(T) -> T;