summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rust-2018/issue-51008.rs
blob: b62609e329dd3a3ea8a99f9e41bd8a33e81fad83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Regression test for #51008 -- the anonymous lifetime in `&i32` was
// being incorrectly considered part of the "elided lifetimes" from
// the impl.
//
// run-pass

#![feature(rust_2018_preview)]

trait A {

}

impl<F> A for F where F: FnOnce(&i32) {}

fn main() {}