blob: 2e57b16e3c7f06f64ca44affd7c21b78c432fd6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// build-pass (FIXME(62277): could be check-pass?)
#![allow(dead_code)]
trait Inner {
type T;
}
impl<'a> Inner for &'a i32 {
type T = i32;
}
fn f<'a>(x: &'a i32) -> <&'a i32 as Inner>::T {
*x
}
fn main() {}
|