]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-13703.rs
Rollup merge of #107114 - Erk-:add-absolute-note-to-path-join, r=m-ou-se
[rust.git] / tests / ui / issues / issue-13703.rs
1 // check-pass
2 // pretty-expanded FIXME #23616
3
4 pub struct Foo<'a, 'b: 'a> { foo: &'a &'b isize }
5 pub fn foo<'a, 'b>(x: Foo<'a, 'b>, _o: Option<&   &   ()>) { let _y = x.foo; }
6 fn main() {}