summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/existential_type.rs
blob: 33bb9a951596624b1b0bc41195bd2110408fa934 (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;