blob: 246dbb5563c1c64f02225a5e71ebf88f623809cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// run-pass
// Test lifetimes are linked properly when we autoslice a vector.
// Issue #3148.
// pretty-expanded FIXME #23616
fn subslice<F>(v: F) -> F where F: FnOnce() { v }
fn both<F>(v: F) -> F where F: FnOnce() {
subslice(subslice(v))
}
pub fn main() {
both(main);
}
|