]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-inherited-assoc-ty-cycle-err.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / coherence / coherence-inherited-assoc-ty-cycle-err.rs
1 // Copyright 2017 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 // Formerly this ICEd with the following message:
12 // Tried to project an inherited associated type during coherence checking,
13 // which is currently not supported.
14 //
15 // No we expect to run into a more user-friendly cycle error instead.
16
17 #![feature(specialization)]
18
19 trait Trait<T> { type Assoc; }
20 //~^ cycle detected
21
22 impl<T> Trait<T> for Vec<T> {
23     type Assoc = ();
24 }
25
26 impl Trait<u8> for Vec<u8> {}
27
28 impl<T> Trait<T> for String {
29     type Assoc = ();
30 }
31
32 impl Trait<<Vec<u8> as Trait<u8>>::Assoc> for String {}
33
34 fn main() {}