]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/associated-existential-type-generic-trait.rs
Rollup merge of #52769 - sinkuu:stray_test, r=alexcrichton
[rust.git] / src / test / ui / impl-trait / associated-existential-type-generic-trait.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![feature(existential_type)]
12 // compile-pass
13
14 trait Bar {}
15 struct Dummy<U>(U);
16 impl<V> Bar for Dummy<V> {}
17
18 trait Foo<T> {
19     type Assoc: Bar;
20     fn foo(t: T) -> Self::Assoc;
21 }
22
23 impl<W> Foo<W> for i32 {
24     existential type Assoc: Bar;
25     fn foo(w: W) -> Self::Assoc {
26         Dummy(w)
27     }
28 }
29
30 struct NonGeneric;
31 impl Bar for NonGeneric {}
32
33 impl<W> Foo<W> for u32 {
34     existential type Assoc: Bar;
35     fn foo(_: W) -> Self::Assoc {
36         NonGeneric
37     }
38 }
39
40 fn main() {}