2019-11-04 00:00:00 +00:00
|
|
|
// check-pass
|
2019-11-06 00:00:00 +00:00
|
|
|
// compile-flags: -Zsave-analysis
|
2018-08-28 00:46:08 -04:00
|
|
|
|
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() {
|
|
|
|
|
}
|