]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-37655.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-37655.rs
1 // Copyright 2016 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 // compile-pass
12 // Regression test for #37655. The problem was a false edge created by
13 // coercion that wound up requiring that `'a` (in `split()`) outlive
14 // `'b`, which shouldn't be necessary.
15
16 #![allow(warnings)]
17
18 trait SliceExt<T> {
19     type Item;
20
21     fn get_me<I>(&self, index: I) -> &I::Output
22         where I: SliceIndex<Self::Item>;
23 }
24
25 impl<T> SliceExt<T> for [T] {
26     type Item = T;
27
28     fn get_me<I>(&self, index: I) -> &I::Output
29         where I: SliceIndex<T>
30     {
31         panic!()
32     }
33 }
34
35 pub trait SliceIndex<T> {
36     type Output: ?Sized;
37 }
38
39 impl<T> SliceIndex<T> for usize {
40     type Output = T;
41 }
42
43 fn foo<'a, 'b>(split: &'b [&'a [u8]]) -> &'a [u8] {
44     split.get_me(0)
45 }
46
47 fn main() { }