summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0311.fixed
blob: 09ceecd0666cdb187a1101a6cb49c13f3243c10d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-rustfix

#![allow(warnings)]

fn no_restriction<'a, T: 'a>(x: &'a ()) -> &'a () {
    with_restriction::<T>(x) //~ ERROR E0311
}

fn with_restriction<'a, T: 'a>(x: &'a ()) -> &'a () {
    x
}

fn main() {}