rust/tests/ui/save-analysis/issue-37323.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
235 B
Rust
Raw Normal View History

// check-pass
// compile-flags: -Zsave-analysis
2017-06-17 14:43:10 -06:00
#![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() {
}