]> git.lizzy.rs Git - rust.git/blob - tests/ui/variance/variance-covariant-self-trait-match.rs
Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco
[rust.git] / tests / ui / variance / variance-covariant-self-trait-match.rs
1 #![allow(dead_code)]
2
3 // Test that even when `Self` is only used in covariant position, it
4 // is treated as invariant.
5
6 trait Get {
7     fn get() -> Self;
8 }
9
10 fn get_min_from_max<'min, 'max, G>()
11     where 'max : 'min, G : 'max, &'max G : Get
12 {
13     // Previously OK, now an error as traits are invariant.
14     impls_get::<&'min G>();
15     //~^ ERROR lifetime may not live long enough
16 }
17
18 fn get_max_from_min<'min, 'max, G>()
19     where 'max : 'min, G : 'max, &'min G : Get
20 {
21     impls_get::<&'max G>();
22     //~^ ERROR lifetime may not live long enough
23 }
24
25 fn impls_get<G>() where G : Get { }
26
27 fn main() { }