Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
// compile-flags: -Zsave-analysis
#![feature(rustc_attrs)]
#![allow(warnings)]
#[derive(Debug)]
struct Point {
}
struct NestedA<'a, 'b> {
x: &'a NestedB<'b>
struct NestedB<'a> {
x: &'a i32,
fn main() {